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 /wm/icecc/Makefile | |
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 'wm/icecc/Makefile')
-rw-r--r-- | wm/icecc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wm/icecc/Makefile b/wm/icecc/Makefile index a4c976d1116..cc1be211260 100644 --- a/wm/icecc/Makefile +++ b/wm/icecc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2005/06/25 01:55:08 reed Exp $ +# $NetBSD: Makefile,v 1.2 2005/12/05 20:51:09 rillig Exp $ # Package version reflects icecc version, with PKGREVISION incremented # for any tool updates, according to the authors scheme. @@ -38,7 +38,7 @@ PYTHON_PATCH_SCRIPTS= icecursorscfg-0.6/icecurcfg.py iceiconcvt-1.0/iceiconcvt.p PYTHON_PATCH_SCRIPTS+= icemergeprefs-0.5/icemergeprefs.py icerrun-0.5/icerrrun.py PYTHON_PATCH_SCRIPTS+= icerrun-0.5/icerrun.py -SUBST_CLASSES= path +SUBST_CLASSES+= path SUBST_STAGE.path= post-patch SUBST_FILES.path= icebgset-1.3/icebgset.pro icecc-2.9/icecc.pro iceked-1.5/iceked.pro SUBST_FILES.path+= icemc-2.1/icemc.pro icesndcfg-1.3/icesndcfg.pro icets-1.4/icets.pro @@ -49,7 +49,7 @@ SUBST_SED.path= "s|/usr/local|${PREFIX}|g" SUBST_MESSAGE.path= "Fixing hardcoded paths." # VIM_SUBDIR comes from "editors/vim-share/version.mk" -PLIST_SUBST+= VIM_SUBDIR=${VIM_SUBDIR} +PLIST_SUBST+= VIM_SUBDIR=${VIM_SUBDIR:Q} do-configure: . for dir in ${QSRC} |