aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Mueller <ulm@gentoo.org>2010-09-05 13:50:09 +0200
committerUlrich Mueller <ulm@gentoo.org>2010-09-05 13:52:54 +0200
commit4a27551650f41325074ec03a7a4cad756e24dc47 (patch)
tree158e1dd198a75353567851239970b279020d2d7f /bin/ebuild-helpers/dodoc
parentAdd a test to check what portage submodules are imported by 'import portage',... (diff)
downloadportage-4a27551650f41325074ec03a7a4cad756e24dc47.tar.gz
portage-4a27551650f41325074ec03a7a4cad756e24dc47.tar.bz2
portage-4a27551650f41325074ec03a7a4cad756e24dc47.zip
dodoc, prepalldocs: Don't test for EAPI; use helpers in subdir 4 instead.
Diffstat (limited to 'bin/ebuild-helpers/dodoc')
-rwxr-xr-xbin/ebuild-helpers/dodoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild-helpers/dodoc b/bin/ebuild-helpers/dodoc
index 99410ea85..29b690112 100755
--- a/bin/ebuild-helpers/dodoc
+++ b/bin/ebuild-helpers/dodoc
@@ -18,7 +18,7 @@ ret=0
for x in "$@" ; do
if [ -s "${x}" ] ; then
install -m0644 "${x}" "${dir}"
- hasq "${EAPI}" 0 1 2 3 && ecompress --queue "${dir}/${x##*/}"
+ ecompress --queue "${dir}/${x##*/}"
elif [ ! -e "${x}" ] ; then
echo "!!! ${0##*/}: $x does not exist" 1>&2
((ret|=1))