summaryrefslogtreecommitdiffstats
path: root/setup.sh
diff options
context:
space:
mode:
authorNicolas Williams <nico@cryptonector.com>2015-02-15 17:57:53 -0600
committerNicolas Williams <nico@cryptonector.com>2015-02-15 18:34:44 -0600
commit8cef5a37ab9d53ee81500b93f44e410c7814a512 (patch)
treebc4cd1706f10ec47acba98565b9399e92796a93e /setup.sh
parent8afdeee785140f3f916321f2a24b4c02d99131ee (diff)
Add --disable-maintainer-mode; make bison optional
Also flex is now optional. The outputs of flex and bison are now committed. By default they get built, but users who want to build from git can now ./configure --disable-maintainer-mode to turn off the dependency on bison and flex. Maintainers must, of course, commit the bison and/or flex outputs when they make changes to parser.y and/or lexer.l, respectively.
Diffstat (limited to 'setup.sh')
-rwxr-xr-xsetup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.sh b/setup.sh
index c458f120..55ee6973 100755
--- a/setup.sh
+++ b/setup.sh
@@ -13,7 +13,7 @@ if [ "clean" == "$1" ]; then
find config -name m4 -prune -o -type f -print | xargs rm -f
rm -rf tmp autom4te.cache
rm -f INSTALL Makefile.in aclocal.m4 configure config.h.in ChangeLog
- rm -f jv_utf8_tables.gen.h lexer.c lexer.h parser.c parser.h
+ rm -f jv_utf8_tables.gen.h
elif [ "superclean" == "$1" ]; then
# if autoconf errors during distcheck, it leaves files that need chmod'ing
ver=$(scripts/version|tr -d '\n')