summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkim Demaille <demaille@gostai.com>2009-07-01 12:19:18 +0200
committerAkim Demaille <demaille@gostai.com>2009-08-12 14:05:59 +0200
commit47076da5b6e1abd6807343ced4ea0cd009f03ea2 (patch)
tree2de65b8e09bce67026122efb79bf5bfe200a81da
parent36dfe4662ef5eb96073034b9eb80113b0c2a204e (diff)
downloadbison-47076da5b6e1abd6807343ced4ea0cd009f03ea2.tar.gz
distcheck: fix.
* examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp. (cherry picked from commit 67af719840616ed07ca120b8255a998f4533ce17)
-rw-r--r--ChangeLog6
-rw-r--r--examples/calc++/Makefile.am5
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 72c5ce56..914a3ece 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-08-12 Akim Demaille <demaille@gostai.com>
+
+ distcheck: fix.
+
+ * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
+
2009-08-10 Joel E. Denny <jdenny@clemson.edu>
* 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)