From: Zac Medico Date: Fri, 17 Jul 2009 18:39:58 +0000 (-0000) Subject: For consistency with emake, add ${MAKEOPTS} ${EXTRA_EMAKE} to make arguments X-Git-Tag: v2.2_rc34~39 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=023d296efc7f1160366c039cc02aff04623e9867;p=portage.git For consistency with emake, add ${MAKEOPTS} ${EXTRA_EMAKE} to make arguments inside einstall. Also, force -j1 in order to override any --jobs settings from MAKEOPTS. Thanks to Diego Pettenò for the suggestion. svn path=/main/trunk/; revision=13833 --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index f80312a83..a20f8d4c9 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -566,6 +566,7 @@ einstall() { mandir="${D}usr/share/man" \ sysconfdir="${D}etc" \ ${LOCAL_EXTRA_EINSTALL} \ + ${MAKEOPTS} ${EXTRA_EMAKE} -j1 \ "$@" install fi ${MAKE:-make} prefix="${D}usr" \ @@ -575,6 +576,7 @@ einstall() { mandir="${D}usr/share/man" \ sysconfdir="${D}etc" \ ${LOCAL_EXTRA_EINSTALL} \ + ${MAKEOPTS} ${EXTRA_EMAKE} -j1 \ "$@" install || die "einstall failed" else die "no Makefile found"