diff --git a/ChangeLog b/ChangeLog index 15c9aed9..4f5d60f7 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-06 Joel E. Denny maint: run "make update-copyright" 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)