diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
commit | 5ec134d67dbba7a354689af359fb4dd92bc8cbec (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /graphics/png | |
parent | 9d13f62cc158ce4d29412c1798882c83849d448b (diff) | |
download | pkgsrc-5ec134d67dbba7a354689af359fb4dd92bc8cbec.tar.gz |
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in
http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'graphics/png')
-rw-r--r-- | graphics/png/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/png/Makefile b/graphics/png/Makefile index 178b96cb5a8..356fec2b010 100644 --- a/graphics/png/Makefile +++ b/graphics/png/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.71 2005/11/04 11:58:54 rillig Exp $ +# $NetBSD: Makefile,v 1.72 2005/12/05 20:50:22 rillig Exp $ # On update, don't forget to increase shared library major/minor's in # accordance with changes (patch-aa). @@ -25,15 +25,15 @@ LIBPNG_SO_MAJOR= 3 LIBPNG_SO_MINOR= 2 MAKEFILE= scripts/makefile.std -MAKE_ENV+= REALCC="${CC}" -MAKE_ENV+= LIBPNG_SO_MAJOR=${LIBPNG_SO_MAJOR} -MAKE_ENV+= LIBPNG_SO_MINOR=${LIBPNG_SO_MINOR} +MAKE_ENV+= REALCC=${CC:Q} +MAKE_ENV+= LIBPNG_SO_MAJOR=${LIBPNG_SO_MAJOR:Q} +MAKE_ENV+= LIBPNG_SO_MINOR=${LIBPNG_SO_MINOR:Q} INSTALLATION_DIRS= include lib/pkgconfig man/man3 man/man5 PKGCONFIG_OVERRIDE= scripts/libpng.pc.in -SUBST_CLASSES= pc +SUBST_CLASSES+= pc SUBST_STAGE.pc= post-patch SUBST_FILES.pc= scripts/libpng.pc.in SUBST_SED.pc= -e 's,@PREFIX@,${PREFIX},' |