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 /wm/fvwm2 | |
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 'wm/fvwm2')
-rw-r--r-- | wm/fvwm2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wm/fvwm2/Makefile b/wm/fvwm2/Makefile index deb09088a08..e733af402af 100644 --- a/wm/fvwm2/Makefile +++ b/wm/fvwm2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2005/05/30 23:24:10 wiz Exp $ +# $NetBSD: Makefile,v 1.45 2005/12/05 20:51:09 rillig Exp $ DISTNAME= fvwm-${FVWM_VER} PKGNAME= fvwm2-${FVWM_VER} @@ -23,7 +23,7 @@ USE_X11BASE= YES GNU_CONFIGURE= YES USE_GNU_READLINE= YES -PLIST_SUBST+= FVWM_VER=${FVWM_VER} +PLIST_SUBST+= FVWM_VER=${FVWM_VER:Q} EVAL_PREFIX+= XPMDIR=xpm CONFIGURE_ARGS+= --without-gnome @@ -33,7 +33,7 @@ CONFIGURE_ARGS+= --with-xpm-includes=${XPMDIR}/include CONFIGURE_ARGS+= --with-imagepath=${PREFIX}/lib/X11/fvwm2/pixmaps:${X11BASE}/include/X11/bitmaps:${X11BASE}/include/X11/pixmaps # We don't want to have CPP from the buildlink directory -CONFIGURE_ENV+= ac_cv_path_FVWM_CPP="${CPP}" +CONFIGURE_ENV+= ac_cv_path_FVWM_CPP=${CPP:Q} post-extract: ${MKDIR} ${WRKDIR}/icons |