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 | b71a1d488b6b45e0a968a4c149990c25b6a09215 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /graphics/gdk-pixbuf | |
parent | 624eed58928f83676fbd7ca01a5f6974bb2cce2a (diff) | |
download | pkgsrc-b71a1d488b6b45e0a968a4c149990c25b6a09215.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/gdk-pixbuf')
-rw-r--r-- | graphics/gdk-pixbuf/Makefile | 3 | ||||
-rw-r--r-- | graphics/gdk-pixbuf/Makefile.common | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/graphics/gdk-pixbuf/Makefile b/graphics/gdk-pixbuf/Makefile index ba3f06c9793..375ec965358 100644 --- a/graphics/gdk-pixbuf/Makefile +++ b/graphics/gdk-pixbuf/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.32 2005/11/26 09:40:49 salo Exp $ +# $NetBSD: Makefile,v 1.33 2005/12/05 20:50:20 rillig Exp $ # .include "Makefile.common" -PKGNAME= ${DISTNAME} PKGREVISION= 6 COMMENT= The GNOME image loading library diff --git a/graphics/gdk-pixbuf/Makefile.common b/graphics/gdk-pixbuf/Makefile.common index 4e535115acc..47204ffdd7d 100644 --- a/graphics/gdk-pixbuf/Makefile.common +++ b/graphics/gdk-pixbuf/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.43 2005/06/01 18:02:55 jlam Exp $ +# $NetBSD: Makefile.common,v 1.44 2005/12/05 20:50:20 rillig Exp $ DISTNAME= gdk-pixbuf-${VER}.0 CATEGORIES= graphics devel @@ -18,7 +18,7 @@ USE_LIBTOOL= YES GNU_CONFIGURE= YES CONFIGURE_ENV+= path_rgb_txt="${X11BASE}/lib/X11/rgb.txt" -PLIST_SUBST+= LOCALBASE=${LOCALBASE} +PLIST_SUBST+= LOCALBASE=${LOCALBASE:Q} DISTINFO_FILE= ${.CURDIR}/../gdk-pixbuf/distinfo PATCHDIR= ${.CURDIR}/../gdk-pixbuf/patches |