logo

live-bootstrap

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

disable-unavailables.patch (1588B)


  1. Disable things we can't regenerate for varied reasons.
  2. SPDX-FileCopyrightText: 2025 fosslinux <fosslinux@aussies.space>
  3. SPDX-License-Identifier: BSD-3-Clause-flex
  4. diff --color -ru configure.in
  5. --- flex-e6f147b7a5f2ec2dc862dc9d30b3734b9555a1ea/configure.in 2024-12-28 11:29:45.497750429 +1100
  6. +++ flex-e6f147b7a5f2ec2dc862dc9d30b3734b9555a1ea/configure.in 2024-12-28 12:37:00.190457545 +1100
  7. @@ -31,9 +31,6 @@
  8. dnl checks for programs
  9. -AM_GNU_GETTEXT([external])
  10. -AM_GNU_GETTEXT_VERSION(0.12)
  11. -
  12. AC_PROG_YACC
  13. AM_PROG_LEX
  14. AC_PROG_CC
  15. @@ -97,12 +94,10 @@
  16. flex.spec
  17. Makefile
  18. doc/Makefile
  19. -website/Makefile
  20. examples/Makefile
  21. examples/fastwc/Makefile
  22. examples/manual/Makefile
  23. m4/Makefile
  24. -po/Makefile.in
  25. tools/Makefile
  26. tests/Makefile
  27. tests/TEMPLATE/Makefile
  28. diff --color -ru Makefile.am
  29. --- flex-e6f147b7a5f2ec2dc862dc9d30b3734b9555a1ea/Makefile.am 2024-12-28 11:29:45.496750429 +1100
  30. +++ flex-e6f147b7a5f2ec2dc862dc9d30b3734b9555a1ea/Makefile.am 2024-12-28 13:32:54.945214018 +1100
  31. @@ -135,13 +135,12 @@
  32. doc \
  33. m4 \
  34. examples \
  35. - po \
  36. tools \
  37. tests
  38. localedir = $(datadir)/locale
  39. AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" -I@includedir@ -I$(top_srcdir)/intl
  40. -LIBS = @LIBINTL@ @LIBS@
  41. +LIBS = @LIBS@
  42. skel.c: flex.skl mkskel.sh flexint.h tables_shared.h
  43. sed 's/m4_/m4postproc_/g; s/m4preproc_/m4_/g' $(srcdir)/flex.skl | $(m4) -P -DFLEX_MAJOR_VERSION=`echo $(VERSION)|cut -f 1 -d .` -DFLEX_MINOR_VERSION=`echo $(VERSION)|cut -f 2 -d .` -DFLEX_SUBMINOR_VERSION=`echo $(VERSION)|cut -f 3 -d .` | sed 's/m4postproc_/m4_/g' | $(SHELL) $(srcdir)/mkskel.sh >skel.c