diff --git a/Makefile.am b/Makefile.am index e0aa88af..e5998639 100644 --- a/Makefile.am +++ b/Makefile.am @@ -78,7 +78,8 @@ clean-local: .PHONY: gitsort gitsort: - cd $(srcdir) && for i in $$(git ls-files '*.gitignore'); do \ + cd $(srcdir) \ + && for i in $$(git ls-files '*.gitignore' | grep -v doc); do \ LC_ALL=C sort $$i -o $$i; \ done diff --git a/TODO b/TODO index 3202d96b..875de655 100644 --- a/TODO +++ b/TODO @@ -9,14 +9,6 @@ And add tests in calc.at, to prepare work for D. ** YYERROR and yynerrs We are missing some cases. Write a test case, and check all the skeletons. -** gnulib -Bruno notes: - -> I haven't looked deeply, but it strikes me that gnulib/lib/bitset/array.c -> does not make use of the 'ffsl' function, nor or the 'integer_length_l' -> function. Maybe because in Bison, all bitsets are so dense that it does -> not give a performance advantage? - ** Cex *** Improve gnulib Don't do this (counterexample.c): diff --git a/bootstrap b/bootstrap index 8f76d696..5f1b1b70 100755 --- a/bootstrap +++ b/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh # Print a version string. -scriptversion=2020-04-13.15; # UTC +scriptversion=2020-11-18.17; # UTC # Bootstrap this package from checked-out sources. @@ -71,7 +71,9 @@ Options: --no-git do not use git to update gnulib. Requires that --gnulib-srcdir point to a correct gnulib snapshot --skip-po do not download po files - +EOF + bootstrap_print_option_usage_hook + cat <