diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-01 16:41:29 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-01 16:41:29 +0000 |
commit | 6ac350a20a09488a1de1ca4640b64c0b824fae5c (patch) | |
tree | 9ef2212dc887034e0fe7daabe6e1f0c555a09cd8 /archivers/zip1 | |
parent | b1429f5adbe8aa939130a7eaee254c9850e4febd (diff) | |
download | pkgsrc-6ac350a20a09488a1de1ca4640b64c0b824fae5c.tar.gz |
Fixed some pkglint warnings of the form:
- WARN: archivers/bzip2/Makefile:15: Please use ${CC:Q} instead of "${CC}".
Diffstat (limited to 'archivers/zip1')
-rw-r--r-- | archivers/zip1/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archivers/zip1/Makefile b/archivers/zip1/Makefile index 9a3f98d6b35..589d0ffa363 100644 --- a/archivers/zip1/Makefile +++ b/archivers/zip1/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2005/10/03 20:34:56 joerg Exp $ +# $NetBSD: Makefile,v 1.36 2005/12/01 16:41:30 rillig Exp $ # DISTNAME= zip1-1.1 @@ -24,7 +24,7 @@ BUILD_TARGET= zip zipcloak .include "../../mk/bsd.prefs.mk" -MAKE_FLAGS+= CFLAGS=${CFLAGS:Q} +MAKE_FLAGS+= CFLAGS=${CFLAGS:M*:Q} .if ${OPSYS} == "Linux" || ${OPSYS} == "Interix" || ${OPSYS} == "Darwin" || ${OPSYS} == "DragonFly" CFLAGS+= -DSYSV -DMODERN -DTERMIOS .else |