From: Joel E. Denny Date: Sun, 25 Apr 2010 21:44:43 +0000 (-0400) Subject: build: don't require src/bison during bootstrap. X-Git-Tag: v2.7.90~693 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/a7ddefd1c21e3bd3a90cb0a18bb67e0e2f2408c8 build: don't require src/bison during bootstrap. Suggested by Eric Blake at . * bootstrap.conf (bootstrap_epilogue): New function to make sure src/parse-gram.[ch] are stamped later than src/parse-gram.y. (cherry picked from commit b733bcd00e6fc8db45c86dc289938a28c1bf72d8) --- diff --git a/ChangeLog b/ChangeLog index 34b34f7c..f16e0565 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2010-04-25 Joel E. Denny + + build: don't require src/bison during bootstrap. + Suggested by Eric Blake at + . + * bootstrap.conf (bootstrap_epilogue): New function to make sure + src/parse-gram.[ch] are stamped later than src/parse-gram.y. + 2010-04-25 Joel E. Denny i18n: fix untranslatable string. diff --git a/bootstrap.conf b/bootstrap.conf index b14cabd6..be1c83d7 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -67,3 +67,10 @@ excluded_files=' # In directories like lib/, m4/, and po/, generate both these files because we # still try to support CVS emulation. vc_ignore='.cvsignore .gitignore' + +bootstrap_epilogue() +{ + # Make sure we don't need src/bison, which usually doesn't exist at + # the time of a bootstrap. + touch src/parse-gram.[ch] +}