I pushed this to branch-2.4.2, branch-2.5, and master. >From cfc9e431c31f7f7291dd16a4a505d6a41e662d0c Mon Sep 17 00:00:00 2001 From: Joel E. Denny <[email protected]> Date: Tue, 4 Aug 2009 14:48:48 -0400 Subject: [PATCH] Fix "make distcheck".
* examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead of just calc.stamp. --- ChangeLog | 6 ++++++ examples/calc++/Makefile.am | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3c0ba08..3e2695a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-08-04 Joel E. Denny <[email protected]> + + Fix "make distcheck". + * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead + of just calc.stamp. + 2009-08-01 Joel E. Denny <[email protected]> Pacify "gcc -Wunused" for the input function from Flex. diff --git a/examples/calc++/Makefile.am b/examples/calc++/Makefile.am index 1f82505..a115d57 100644 --- a/examples/calc++/Makefile.am +++ b/examples/calc++/Makefile.am @@ -31,7 +31,7 @@ $(BISON): $(BISON_IN) doc = $(top_srcdir)/doc/bison.texinfo extexi = $(top_srcdir)/examples/extexi # Extract in src. -calc.stamp: $(doc) $(extexi) +$(srcdir)/calc.stamp: $(doc) $(extexi) rm -f $@ [email protected] touch [email protected] cd $(srcdir) && \ @@ -40,7 +40,7 @@ calc.stamp: $(doc) $(extexi) calc++-scanner.ll calc++.cc calc++-driver.hh calc++-driver.cc mv [email protected] $@ -$(calc_extracted): calc.stamp +$(calc_extracted): $(srcdir)/calc.stamp ## ------------------- ## ## Parser generation. ## -- 1.5.4.3
