From f589ea107c2c77922307351b0661587f9a640473 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Wed, 21 Jan 2009 01:37:55 -0600 Subject: Make sure gzip doesn't delete the man page The install.sh script compresses our man page, but effectively deletes it. Let's fix that. Signed-off-by: Aaron Griffin --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install.sh') diff --git a/install.sh b/install.sh index f25ac93..cf4a70a 100755 --- a/install.sh +++ b/install.sh @@ -21,5 +21,5 @@ cp -r install/ ${1}/lib/initcpio/ cp -r mkinitcpio.d/ ${1}/etc/mkinitcpio.d #a2x -d manpage -f manpage mkinitcpio.5.txt -gzip --best mkinitcpio.5 +gzip -c --best mkinitcpio.5 > mkinitcpio.5.gz install -D -m644 mkinitcpio.5.gz ${1}/usr/man/man5/mkinitcpio.5.gz -- cgit v1.2.3-24-g4f1b