summaryrefslogtreecommitdiff
path: root/ext/util
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-04-03 00:25:45 +0000
committerNicholas Clark <nick@ccl4.org>2006-04-03 00:25:45 +0000
commit1c8b6db8160546df62c753cdbb48e3f8553b7af0 (patch)
tree1400c98af1f3b3908a4ad7b60f7b26e2f2f677e7 /ext/util
parent4ad0818d442007a6b38419a6cbf62cebdfabbf0a (diff)
downloadperl-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_ext4
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 $?