You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by Jim Meyering <ji...@meyering.net> on 2007/02/14 10:58:55 UTC

gen/Makefile.am: fix typo: s/>>/>/

I reported this before (maybe privately?), but the fix never made it in.

2007-02-14  Jim Meyering  <ji...@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.

Index: gen/Makefile.am
===================================================================
--- gen/Makefile.am	(revision 507457)
+++ gen/Makefile.am	(working copy)
@@ -27,6 +27,6 @@
 	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

Re: gen/Makefile.am: fix typo: s/>>/>/

Posted by Gordon Sim <gs...@redhat.com>.
Jim Meyering wrote:
> I reported this before (maybe privately?), but the fix never made it in.
> 
> 2007-02-14  Jim Meyering  <ji...@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.

Applied as rev 507472.