summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-07-30 07:01:10 +0000
committerZac Medico <zmedico@gentoo.org>2007-07-30 07:01:10 +0000
commitc1af081de69b8ce653e2352085e17a401c659367 (patch)
tree6b00b495254855d7fef7ed4bc551e765550980ff /bin
parent58099f89d7532762beb50234a0327a9b7c23144b (diff)
downloadportage-c1af081de69b8ce653e2352085e17a401c659367.tar.gz
portage-c1af081de69b8ce653e2352085e17a401c659367.tar.bz2
portage-c1af081de69b8ce653e2352085e17a401c659367.zip
use ${MAKE:-make} rather than make in einstall() (branches/2.1.2 r7404)
svn path=/main/branches/2.1.2.9/; revision=7507
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ebuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 9eb0a4f87..3697ccbc8 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -609,7 +609,7 @@ einstall() {
if [ -f ./[mM]akefile -o -f ./GNUmakefile ] ; then
if [ "${PORTAGE_DEBUG}" == "1" ]; then
- make -n prefix="${D}/usr" \
+ ${MAKE:-make} -n prefix="${D}/usr" \
datadir="${D}/usr/share" \
infodir="${D}/usr/share/info" \
localstatedir="${D}/var/lib" \
@@ -618,7 +618,7 @@ einstall() {
${LOCAL_EXTRA_EINSTALL} \
"$@" install
fi
- make prefix="${D}/usr" \
+ ${MAKE:-make} prefix="${D}/usr" \
datadir="${D}/usr/share" \
infodir="${D}/usr/share/info" \
localstatedir="${D}/var/lib" \