From: Bruno Haible Date: Fri, 4 Aug 2006 16:06:01 +0000 (+0000) Subject: Fix for "make -j 3". X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14ec243e2705aab23d90dbf2b230576265d9e445;p=pspp Fix for "make -j 3". --- diff --git a/ChangeLog b/ChangeLog index 5fad74034d..23980d1f54 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-08-04 Bruno Haible + + * 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 * modules/csharpexec (configure.ac): Comment out macro invocation. diff --git a/gnulib-tool b/gnulib-tool index a36809afc1..58365fd0ca 100755 --- 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 @@ func_emit_lib_Makefile_am () 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 @@ func_emit_tests_Makefile_am () 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 \\"