From: Akim Demaille Date: Wed, 1 Jul 2009 10:19:18 +0000 (+0200) Subject: distcheck: fix. X-Git-Tag: v2.5_rc1~195 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/47076da5b6e1abd6807343ced4ea0cd009f03ea2 distcheck: fix. * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp. (cherry picked from commit 67af719840616ed07ca120b8255a998f4533ce17) --- diff --git a/ChangeLog b/ChangeLog index 72c5ce56..914a3ece 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-08-12 Akim Demaille + + distcheck: fix. + + * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp. + 2009-08-10 Joel E. Denny * tests/Makefile.am (TESTSUITE_AT): Add named-refs.at. diff --git a/examples/calc++/Makefile.am b/examples/calc++/Makefile.am index a115d57a..085ffaa8 100644 --- a/examples/calc++/Makefile.am +++ b/examples/calc++/Makefile.am @@ -54,7 +54,10 @@ MAINTAINERCLEANFILES = $(srcdir)/*.stamp $(BUILT_SOURCES) # Compile the parser and save cycles. # This code comes from "Handling Tools that Produce Many Outputs", # from the Automake documentation. -EXTRA_DIST = $(srcdir)/calc++-parser.stamp $(srcdir)/calc++-parser.yy +EXTRA_DIST = \ + $(srcdir)/calc++-parser.stamp \ + $(srcdir)/calc++-parser.yy \ + $(srcdir)/calc.stamp # Don't depend on $(BISON) otherwise we would rebuild these files # in srcdir, including during distcheck, which is forbidden. $(srcdir)/calc++-parser.stamp: $(srcdir)/calc++-parser.yy $(BISON_IN)