summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2007-02-14 10:33:58 +0000
committerGordon Sim <gsim@apache.org>2007-02-14 10:33:58 +0000
commitc25f48296f532706942e725de48294d1baa5f239 (patch)
treea987ea9c5fa74bd77a9f4d468335e6a33455d933
parentf9ebfec9097a45e035ed9f18f91161dbb1fe0707 (diff)
downloadqpid-python-c25f48296f532706942e725de48294d1baa5f239.tar.gz
Applied patch from Jim Meyering, submitted on dev list:
2007-02-14 Jim Meyering <jim@meyering.net> * gen/Makefile.am (gen-src.mk): Don't append to $@-t, in case there's a stray copy left over from an interrupted build. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@507472 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--cpp/gen/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/gen/Makefile.am b/cpp/gen/Makefile.am
index e1707b86c4..bd9f05eda6 100644
--- a/cpp/gen/Makefile.am
+++ b/cpp/gen/Makefile.am
@@ -27,6 +27,6 @@ $(BUILT_SOURCES) timestamp: $(spec) $(java_sources) $(cxx_templates)
touch timestamp
gen-src.mk: timestamp
- ./make-gen-src-mk.sh $(gentools_dir) $(gentools_srcdir) >> $@-t
+ ./make-gen-src-mk.sh $(gentools_dir) $(gentools_srcdir) > $@-t
mv $@-t $@
endif