diff options
author | kristerw <kristerw@pkgsrc.org> | 2005-07-15 23:23:15 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2005-07-15 23:23:15 +0000 |
commit | 28c35b47e7d4b80d507639c0212327fd19d33b57 (patch) | |
tree | 67e55ea6e3608279286f47531d73f88b2c196bda /news/inn | |
parent | 815cf35a6c6359836e0cb02f8350e383e76f9baf (diff) | |
download | pkgsrc-28c35b47e7d4b80d507639c0212327fd19d33b57.tar.gz |
The workref fix in previous commit did not work on NetBSD 1.6; its
make does not understand the "W" option in :C modifiers, and it
handles substitution in strings containing spaces somwheat differently.
Bump PKGREVISION.
Diffstat (limited to 'news/inn')
-rw-r--r-- | news/inn/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/news/inn/Makefile b/news/inn/Makefile index 88bd76e2f3f..b9e6b990282 100644 --- a/news/inn/Makefile +++ b/news/inn/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.64 2005/06/27 19:11:25 tron Exp $ +# $NetBSD: Makefile,v 1.65 2005/07/15 23:23:15 kristerw Exp $ DISTNAME= inn-2.4.1 -PKGREVISION= 5 +PKGREVISION= 6 CATEGORIES= news MASTER_SITES= ftp://ftp.isc.org/isc/inn/ \ ftp://ftp.sunet.se/pub/news/nntp/inn/ \ @@ -40,7 +40,7 @@ CONFIGURE_ENV+= _PATH_EGREP="${TOOLS_EGREP}" CONFIGURE_ENV+= _PATH_SED="${TOOLS_SED}" CONFIGURE_ENV+= _PATH_SH="${TOOLS_SH}" CONFIGURE_ENV+= _PATH_SORT="${TOOLS_SORT}" -CONFIGURE_ENV+= GZIP="${TOOLS_GZIP_CMD:C/ .*//W}" +CONFIGURE_ENV+= GZIP="${TOOLS_GZIP_CMD:Q:C/\\\\ .*//}" USE_TOOLS+= awk egrep gzip sed sh sort yacc PKG_USERS= ${INN_USER}:${INN_GROUP}::Internet\\ News:${INN_DATA_DIR}:${SH} |