diff options
author | jlam <jlam@pkgsrc.org> | 2005-05-15 21:54:50 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-05-15 21:54:50 +0000 |
commit | a7b48d62bcbdeab27e99fce58658275c20ccdfaf (patch) | |
tree | 6af19f92b97f3e577788e6de686c895693d696d7 /www | |
parent | 67fbaa915590b3b09cf0fe79ea4473e3ca9ac786 (diff) | |
download | pkgsrc-a7b48d62bcbdeab27e99fce58658275c20ccdfaf.tar.gz |
Use gzcat instead of "gzip -dc".
Diffstat (limited to 'www')
-rw-r--r-- | www/ap-auth-cookie/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/ap-auth-cookie/Makefile b/www/ap-auth-cookie/Makefile index df7446c0895..e462b3b0dd0 100644 --- a/www/ap-auth-cookie/Makefile +++ b/www/ap-auth-cookie/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2005/04/11 21:47:49 tv Exp $ +# $NetBSD: Makefile,v 1.34 2005/05/15 21:54:50 jlam Exp $ # # There are a few more mod_auth_cookie's out there doing slightly # different things. This one pkg would be a good place to dump them all in @@ -23,7 +23,7 @@ APACHE_MODULE_NAME= mod_auth_cookie.so DIST_SUBDIR= ${PKGNAME} post-extract: - @(${ECHO} '#include "ap_compat.h"'; ${GZIP_CMD} -dc ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES}) \ + @(${ECHO} '#include "ap_compat.h"'; ${GZCAT} ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES}) \ >${WRKSRC}/${DISTNAME} .include "../../www/apache/module.mk" |