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 /openssl | |
parent | 295269dd4e66d592ca112a96e28ab7d87a6af0c1 (diff) |
Apparently some Linux distributions have "gzip" but don't have "gzcat"
svn path=/openssl/Makefile; revision=1563
Diffstat (limited to 'openssl')
-rw-r--r-- | openssl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/Makefile b/openssl/Makefile index e873a9cc..da27f7a3 100644 --- a/openssl/Makefile +++ b/openssl/Makefile @@ -13,7 +13,7 @@ openssl-${VERSION}/Makefile: openssl-${VERSION}/config cd openssl-${VERSION}; PERL=/usr/bin/perl ./config enable-rfc3779 no-dso openssl-${VERSION}/config: openssl-${VERSION}.tar.gz - gzcat openssl-${VERSION}.tar.gz | tar -xf - + gzip -c -d openssl-${VERSION}.tar.gz | tar -xf - ln -s . openssl-${VERSION}/lib touch $@ |