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 /games/gnome2-games | |
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 'games/gnome2-games')
-rw-r--r-- | games/gnome2-games/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/games/gnome2-games/Makefile b/games/gnome2-games/Makefile index 468c753fef1..f61cbf735b4 100644 --- a/games/gnome2-games/Makefile +++ b/games/gnome2-games/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.53 2005/11/25 21:23:15 wiz Exp $ +# $NetBSD: Makefile,v 1.54 2005/12/05 20:50:16 rillig Exp $ DISTNAME= gnome-games-2.12.1 PKGREVISION= 1 @@ -26,7 +26,7 @@ USE_PKGINSTALL= yes INSTALL_EXTRA_TMPL+= ${.CURDIR}/INSTALL GNU_CONFIGURE= yes -CONFIGURE_ENV+= PKGLOCALEDIR=${PKGLOCALEDIR} +CONFIGURE_ENV+= PKGLOCALEDIR=${PKGLOCALEDIR:Q} CONFIGURE_ARGS+= --localstatedir=${VARBASE} # This package installs files in sysconfdir but does not read them directly, # so the following configuration argument is safe. @@ -39,9 +39,8 @@ CONF_FILES= sound/events/iagno.soundlist CONF_FILES+= ${EGDIR}/${conffile} ${PKG_SYSCONFDIR}/${conffile} .endfor -.undef conffile -FILES_SUBST+= INSTALL="${INSTALL}" +FILES_SUBST+= INSTALL=${INSTALL:Q} GCONF2_SCHEMAS= aisleriot.schemas GCONF2_SCHEMAS+= blackjack.schemas |