This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH: Fix parallel build in bfd


I checked in the following patch to fix parallel build in bfd.


H.J.
----
2001-07-15  H.J. Lu  <hjl@gnu.org>

	* Makefile.am (po/SRC-POTFILES.in): Use tmp.src instead of tmp.
	(po/BLD-POTFILES.in): Use tmp.bld instead of tmp.
	* Makefile.in: Regenerate.

Index: bfd/Makefile.am
===================================================================
RCS file: /cvs/src/src/bfd/Makefile.am,v
retrieving revision 1.57
diff -u -p -r1.57 Makefile.am
--- Makefile.am	2001/06/10 05:20:59	1.57
+++ Makefile.am	2001/07/15 19:19:28
@@ -512,12 +512,12 @@ SRC_POTFILES = $(SOURCE_CFILES) $(SOURCE
 BLD_POTFILES = $(BUILD_CFILES) $(BUILD_HFILES)
 
 po/SRC-POTFILES.in: @MAINT@ Makefile $(SRC_POTFILES)
-	for file in $(SRC_POTFILES); do echo $$file; done | sort > tmp \
-	  && mv tmp $(srcdir)/po/SRC-POTFILES.in
+	for file in $(SRC_POTFILES); do echo $$file; done | sort > tmp.src \
+	  && mv tmp.src $(srcdir)/po/SRC-POTFILES.in
 
 po/BLD-POTFILES.in: @MAINT@ Makefile $(BLD_POTFILES)
-	for file in $(BLD_POTFILES); do echo $$file; done | sort > tmp \
-	  && mv tmp $(srcdir)/po/BLD-POTFILES.in
+	for file in $(BLD_POTFILES); do echo $$file; done | sort > tmp.bld \
+	  && mv tmp.bld $(srcdir)/po/BLD-POTFILES.in
 
 # The following target is retained for upgrade purposes.
 # This target used to exist in older versions of this makefile, and was
Index: bfd/Makefile.in
===================================================================
RCS file: /cvs/src/src/bfd/Makefile.in,v
retrieving revision 1.66
diff -u -p -r1.66 Makefile.in
--- Makefile.in	2001/06/10 05:20:59	1.66
+++ Makefile.in	2001/07/15 19:19:34
@@ -1087,12 +1087,12 @@ maintainer-clean-generic clean mostlycle
 
 
 po/SRC-POTFILES.in: @MAINT@ Makefile $(SRC_POTFILES)
-	for file in $(SRC_POTFILES); do echo $$file; done | sort > tmp \
-	  && mv tmp $(srcdir)/po/SRC-POTFILES.in
+	for file in $(SRC_POTFILES); do echo $$file; done | sort > tmp.src \
+	  && mv tmp.src $(srcdir)/po/SRC-POTFILES.in
 
 po/BLD-POTFILES.in: @MAINT@ Makefile $(BLD_POTFILES)
-	for file in $(BLD_POTFILES); do echo $$file; done | sort > tmp \
-	  && mv tmp $(srcdir)/po/BLD-POTFILES.in
+	for file in $(BLD_POTFILES); do echo $$file; done | sort > tmp.bld \
+	  && mv tmp.bld $(srcdir)/po/BLD-POTFILES.in
 
 # The following target is retained for upgrade purposes.
 # This target used to exist in older versions of this makefile, and was


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]