summaryrefslogtreecommitdiffstats
path: root/bin/dodoc
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-03-17 02:08:23 +0000
committerMike Frysinger <vapier@gentoo.org>2007-03-17 02:08:23 +0000
commit962b3142f6aea84fa7f87277763567cfbbe264e1 (patch)
tree1ca7b995aba51ed5497af6a72c3d5940c22266c1 /bin/dodoc
parente4f268b67960ff7326d69fe150cc648c2593e0ab (diff)
downloadportage-962b3142f6aea84fa7f87277763567cfbbe264e1.tar.gz
portage-962b3142f6aea84fa7f87277763567cfbbe264e1.tar.bz2
portage-962b3142f6aea84fa7f87277763567cfbbe264e1.zip
redo compression so that it is queued up in src_install and then dequeued post src_install
svn path=/main/trunk/; revision=6220
Diffstat (limited to 'bin/dodoc')
-rwxr-xr-xbin/dodoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/dodoc b/bin/dodoc
index 4139cb593..4a89aa061 100755
--- a/bin/dodoc
+++ b/bin/dodoc
@@ -17,7 +17,7 @@ ret=0
for x in "$@" ; do
if [ -s "${x}" ] ; then
install -m0644 "${x}" "${dir}"
- ecompress "${dir}/${x##*/}"
+ ecompress --queue "${dir}/${x##*/}"
elif [ ! -e "${x}" ] ; then
echo "dodoc: ${x} does not exist" 1>&2
((++ret))