summaryrefslogtreecommitdiffstats
path: root/bin/ebuild-helpers
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-09-26 19:04:59 -0700
committerZac Medico <zmedico@gentoo.org>2012-09-26 19:04:59 -0700
commitd0089063c457ef2adc7b01e7296c4988edb709a6 (patch)
treed05877c59d47248e3796ff01cb5e8fbb6fb00182 /bin/ebuild-helpers
parent690fe8571a827cbe0e807b9c396f0d134d35481e (diff)
downloadportage-d0089063c457ef2adc7b01e7296c4988edb709a6.tar.gz
portage-d0089063c457ef2adc7b01e7296c4988edb709a6.tar.bz2
portage-d0089063c457ef2adc7b01e7296c4988edb709a6.zip
prepalldocs: fix inverted eapi_has_docompress
This broke in commit ab46499322311c1faa710c63d0a5339e49a9061a.
Diffstat (limited to 'bin/ebuild-helpers')
-rwxr-xr-xbin/ebuild-helpers/prepalldocs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild-helpers/prepalldocs b/bin/ebuild-helpers/prepalldocs
index b76f08439..3094661f5 100755
--- a/bin/ebuild-helpers/prepalldocs
+++ b/bin/ebuild-helpers/prepalldocs
@@ -4,7 +4,7 @@
source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
-if ! ___eapi_has_docompress; then
+if ___eapi_has_docompress; then
die "'${0##*/}' has been banned for EAPI '$EAPI'"
exit 1
fi