summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-12-22 00:53:31 +0000
committerZac Medico <zmedico@gentoo.org>2006-12-22 00:53:31 +0000
commit19a35944ac0f7010791fd4d7d03147a679bb6446 (patch)
tree8e22babbe2259ed3aac6c37140af5d0168d1beaf /bin/ebuild.sh
parentMake emerge enable backward compatibility mode for dep_check() calls on insta... (diff)
downloadportage-multirepo-19a35944ac0f7010791fd4d7d03147a679bb6446.tar.gz
portage-multirepo-19a35944ac0f7010791fd4d7d03147a679bb6446.tar.bz2
portage-multirepo-19a35944ac0f7010791fd4d7d03147a679bb6446.zip
Fix the "help" phase so that it works without build dirs.
svn path=/main/trunk/; revision=5347
Diffstat (limited to 'bin/ebuild.sh')
-rwxr-xr-xbin/ebuild.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index aa061419..0d26836d 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -1656,7 +1656,9 @@ for myarg in ${EBUILD_SH_ARGS} ; do
done
# Save the env only for relevant phases.
-if [ -n "$myarg" ] && [ "$myarg" != "clean" ]; then
+if [ -n "${myarg}" ] && \
+ [ "${myarg}" != "clean" ] && \
+ [ "${myarg}" != "help" ] ; then
# Do not save myarg in the env, or else the above [ -n "$myarg" ] test will
# give a false positive when ebuild.sh is sourced.
unset myarg