Fix "make GZ=1 quick-install-doc"

The basic idea is from Mark Levedahl.  I do not use GZ=1 nor
quick-install-doc myself (there obviously is a chicken-and-egg
issue with quick-install-doc for me).

Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Junio C Hamano 2007-08-06 21:15:15 -07:00
parent cad3a2056d
commit 87027ae449
1 changed files with 3 additions and 5 deletions

View File

@ -24,10 +24,8 @@ git read-tree $head
git checkout-index -a -f --prefix="$mandir"/ git checkout-index -a -f --prefix="$mandir"/


if test -n "$GZ"; then if test -n "$GZ"; then
cd "$mandir" git ls-tree -r --name-only $head |
for i in `git ls-tree -r --name-only $head` xargs printf "$mandir/%s\n" |
do xargs gzip -f
gzip < $i > $i.gz && rm $i
done
fi fi
rm -f "$GIT_INDEX_FILE" rm -f "$GIT_INDEX_FILE"