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 /games/xemeraldia/Makefile | |
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 'games/xemeraldia/Makefile')
-rw-r--r-- | games/xemeraldia/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/xemeraldia/Makefile b/games/xemeraldia/Makefile index 542ca6d82fb..ebdf42daa22 100644 --- a/games/xemeraldia/Makefile +++ b/games/xemeraldia/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2005/03/24 21:12:54 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2005/12/05 20:50:18 rillig Exp $ DISTNAME= xemeraldia-0.3 PKGNAME= xemeraldia-0.31 @@ -16,8 +16,8 @@ USE_IMAKE= yes BUILD_TARGET= xemeraldia GAMES_DIR= share/games -MAKE_ENV+= GAMES_DIR="${GAMES_DIR}" -PLIST_SUBST= GAMES_DIR="${GAMES_DIR}" +MAKE_ENV+= GAMES_DIR=${GAMES_DIR:Q} +PLIST_SUBST= GAMES_DIR=${GAMES_DIR:Q} post-install: @${INSTALL_DATA_DIR} ${PREFIX}/${GAMES_DIR}/xemeraldia |