]> git.saurik.com Git - bison.git/commitdiff
build: avoid concurrent extraction of calc++.
authorAkim Demaille <demaille@gostai.com>
Mon, 29 Jun 2009 13:02:48 +0000 (15:02 +0200)
committerAkim Demaille <demaille@gostai.com>
Mon, 29 Jun 2009 18:40:02 +0000 (20:40 +0200)
* examples/calc++/Makefile.am (calc.stamp): New.
Depend on it to create the sources of calc++ so that concurrent
builds don't launch several "extexi" in parallel.
Not only this is inefficient, this also builds incorrect sources
with several extractions mixed together.

Cherry-picked from 5ece73eaa19c79d5dd40b36a2a7d38cb397c2fcd.

ChangeLog
examples/calc++/Makefile.am

index 7b40c26ecc780ba87b9496e85bd0f199d645092f..bf4a90b3367902f9fcc74341d886b87df375516d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2009-06-29  Akim Demaille  <demaille@gostai.com>
+
+       build: avoid concurrent extraction of calc++.
+       * examples/calc++/Makefile.am (calc.stamp): New.
+       Depend on it to create the sources of calc++ so that concurrent
+       builds don't launch several "extexi" in parallel.
+       Not only this is inefficient, this also builds incorrect sources
+       with several extractions mixed together.
+
 2009-06-27  Alex Rozenman  <rozenman@gmail.com>
 
        Implement support for named symbol references.
index 604673849f63c30ec43dfe9fa22ca5618359dd77..1f825056f60cb1be3eb0b958bba35fc806446c09 100644 (file)
@@ -1,5 +1,5 @@
 ## Process this file with automake to produce Makefile.in -*-Makefile-*-
-## Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+## Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc.
 
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -31,12 +31,16 @@ $(BISON): $(BISON_IN)
 doc = $(top_srcdir)/doc/bison.texinfo
 extexi = $(top_srcdir)/examples/extexi
 # Extract in src.
-$(calc_extracted): $(doc) $(extexi)
+calc.stamp: $(doc) $(extexi)
+       rm -f $@ $@.tmp
+       touch $@.tmp
        cd $(srcdir) && \
           $(AWK) -f ../extexi -v VERSION="$(VERSION)" \
             ../../doc/bison.texinfo -- calc++-parser.yy \
             calc++-scanner.ll calc++.cc calc++-driver.hh calc++-driver.cc
+       mv $@.tmp $@
 
+$(calc_extracted): calc.stamp
 
 ## ------------------- ##
 ## Parser generation.  ##