diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-04-03 00:25:45 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-04-03 00:25:45 +0000 |
commit | 1c8b6db8160546df62c753cdbb48e3f8553b7af0 (patch) | |
tree | 1400c98af1f3b3908a4ad7b60f7b26e2f2f677e7 /ext/util | |
parent | 4ad0818d442007a6b38419a6cbf62cebdfabbf0a (diff) | |
download | perl-1c8b6db8160546df62c753cdbb48e3f8553b7af0.tar.gz |
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
Diffstat (limited to 'ext/util')
-rw-r--r-- | ext/util/make_ext | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/util/make_ext b/ext/util/make_ext index d90b057b2a..cd1db5aa6c 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 $? |