logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>

pass1.sh (521B)


  1. # SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
  2. #
  3. # SPDX-License-Identifier: GPL-3.0-or-later
  4. src_prepare() {
  5. default
  6. mv lib/fnmatch.in.h lib/fnmatch.h
  7. # gperf pregenerated files
  8. rm lib/iconv_open-hpux.h lib/iconv_open-aix.h lib/iconv_open-irix.h lib/iconv_open-osf.h
  9. # Rebuild bison pre-generated file
  10. rm lib/getdate.c
  11. cd lib
  12. bison --update getdate.y
  13. bison getdate.y
  14. mv getdate.tab.c getdate.c
  15. cd ..
  16. touch config.h
  17. touch lib/configmake.h
  18. }