diff options
author | jmc <jmc@pkgsrc.org> | 2003-03-24 23:15:34 +0000 |
---|---|---|
committer | jmc <jmc@pkgsrc.org> | 2003-03-24 23:15:34 +0000 |
commit | 8323049d60a250153d1abd08ba504e7c0fb6c9aa (patch) | |
tree | 89013cb0fa680ef852fbdbf0454194cab09bac5c | |
parent | 9b827e7fc0375d77f00106592e7dc51848f82524 (diff) | |
download | pkgsrc-8323049d60a250153d1abd08ba504e7c0fb6c9aa.tar.gz |
Do the gunzip in post-extract with the correct path to the distfile
-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 d39b76392ea..f26c930aff1 100644 --- a/www/ap-auth-cookie/Makefile +++ b/www/ap-auth-cookie/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2003/02/17 20:59:57 grant Exp $ +# $NetBSD: Makefile,v 1.26 2003/03/24 23:15:34 jmc 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 @@ -24,7 +24,7 @@ APACHE_MODULE_NAME= mod_auth_cookie.so DIST_SUBDIR= ${PKGNAME} post-extract: - @(${ECHO} '#include "ap_compat.h"'; ${GZIP_CMD} -dc ${DISTDIR}/${DISTFILES}) \ + @(${ECHO} '#include "ap_compat.h"'; ${GZIP_CMD} -dc ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES}) \ >${WRKSRC}/${DISTNAME} .include "../../www/apache/module.mk" |