diff options
author | Rob Austein <sra@hactrn.net> | 2008-03-25 21:00:49 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2008-03-25 21:00:49 +0000 |
commit | 5024ffbe382f0e279997fdf3f0e3d725d0fa9d50 (patch) | |
tree | 9dd9323b1b5ec4e06e0a741f3166ca8f2b2d5b5b /rcynic | |
parent | 295269dd4e66d592ca112a96e28ab7d87a6af0c1 (diff) |
Apparently some Linux distributions have "gzip" but don't have "gzcat"
svn path=/openssl/Makefile; revision=1563
Diffstat (limited to 'rcynic')
-rw-r--r-- | rcynic/static-rsync/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rcynic/static-rsync/Makefile b/rcynic/static-rsync/Makefile index 9f25118e..237ea2b4 100644 --- a/rcynic/static-rsync/Makefile +++ b/rcynic/static-rsync/Makefile @@ -23,7 +23,7 @@ ${DIRNAME}/${BIN}: configured.stamp cd ${DIRNAME} && ${MAKE} ${BIN_LOG} extracted.stamp: ${TARBALL} - gzcat ${TARBALL} | tar -xf - + gzip -c -d ${TARBALL} | tar -xf - touch $@ patched.stamp: extracted.stamp |