From: Nicholas Clark Date: Mon, 3 Apr 2006 00:25:45 +0000 (+0000) Subject: The make_ext script should pass MAKE=$MAKE to submakes it invokes for X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1c8b6db8160546df62c753cdbb48e3f8553b7af0;p=p5sagit%2Fp5-mst-13.2.git The make_ext script should pass MAKE=$MAKE to submakes it invokes for extentions, as they in turn may invoke $MAKE, and should invoke the same $MAKE as at the top level, which may not be $Config{make} p4raw-id: //depot/perl@27693 --- diff --git a/ext/util/make_ext b/ext/util/make_ext index d90b057..cd1db5a 100644 --- a/ext/util/make_ext +++ b/ext/util/make_ext @@ -131,10 +131,10 @@ clean) ;; realclean) ;; *) # Give makefile an opportunity to rewrite itself. # reassure users that life goes on... - $MAKE config $passthru || echo "$MAKE config failed, continuing anyway..." + $MAKE config MAKE=$MAKE $passthru || echo "$MAKE config failed, continuing anyway..." ;; esac -$MAKE $makeopts $target $makeargs $passthru || exit +$MAKE $makeopts $target MAKE=$MAKE $makeargs $passthru || exit exit $?