Change 27693 by nicholas@nicholas-z1 on 2006/04/03 00:25:45
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}
Affected files
//depot/perl/ext/util/make_ext#16 edit
Differences
//depot/perl/ext/util/make_ext#16 (text)
Index: perl/ext/util/make_ext
perl/ext/util/make_ext#15~27549~2006-03-20 02:21:50.000000000 -0800
perl/ext/util/make_ext2006-04-02 17:25:45.000000000 -0700
@@ -131,10 +131,10 @@
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 $?
End of Patch.