aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-02-19 15:27:32 -0800
committerZac Medico <zmedico@gentoo.org>2011-02-19 15:27:32 -0800
commitcba45f5b8f7d38993c7e93050a3771fd57fa8564 (patch)
treeec24ec4ade60e03209478ccb8bbb59a95b100121 /bin
parentcheck_required_use: improve missing IUSE error (diff)
downloadportage-cba45f5b8f7d38993c7e93050a3771fd57fa8564.tar.gz
portage-cba45f5b8f7d38993c7e93050a3771fd57fa8564.tar.bz2
portage-cba45f5b8f7d38993c7e93050a3771fd57fa8564.zip
_eapi4_src_install: handle empty DOCS like PMS
This will fix bug #355635.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ebuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index d0cf84d1e..8abdec94c 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -671,7 +671,7 @@ _eapi4_src_install() {
emake DESTDIR="${D}" install
fi
- if [[ -z $DOCS ]] ; then
+ if ! declare -p DOCS &>/dev/null ; then
local d
for d in README* ChangeLog AUTHORS NEWS TODO CHANGES \
THANKS BUGS FAQ CREDITS CHANGELOG ; do