changeset 7086:ba6d3c85213f

Fix for "make -j 3".
author Bruno Haible <bruno@clisp.org>
date Fri, 04 Aug 2006 16:06:01 +0000
parents 6a24b1c63a3a
children f712abcda599
files ChangeLog gnulib-tool
diffstat 2 files changed, 9 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-08-04  Bruno Haible  <bruno@clisp.org>
+
+	* gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
+	Make the mostlyclean-local rule depend on mostlyclean-generic.
+	Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
+
 2006-07-30  Bruno Haible  <bruno@clisp.org>
 
 	* modules/csharpexec (configure.ac): Comment out macro invocation.
--- a/gnulib-tool
+++ b/gnulib-tool
@@ -22,7 +22,7 @@
 
 progname=$0
 package=gnulib
-cvsdatestamp='$Date: 2006-07-31 11:37:23 $'
+cvsdatestamp='$Date: 2006-08-04 16:06:01 $'
 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
 
@@ -932,7 +932,7 @@
     fi
   done
   echo
-  echo "mostlyclean-local:"
+  echo "mostlyclean-local: mostlyclean-generic"
   echo "	@test -z \"\$(MOSTLYCLEANDIRS)\" || \\"
   echo "	  for dir in \$(MOSTLYCLEANDIRS); do \\"
   echo "	    if test -d \$\$dir; then \\"
@@ -1012,7 +1012,7 @@
   echo "clean-local:"
   echo "	rm -rf SunWS_cache"
   echo
-  echo "mostlyclean-local:"
+  echo "mostlyclean-local: mostlyclean-generic"
   echo "	@test -z \"\$(MOSTLYCLEANDIRS)\" || \\"
   echo "	  for dir in \$(MOSTLYCLEANDIRS); do \\"
   echo "	    if test -d \$\$dir; then \\"