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/windowmaker | |
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/windowmaker')
-rw-r--r-- | wm/windowmaker/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/wm/windowmaker/Makefile b/wm/windowmaker/Makefile index 408b1484ce9..c110266913b 100644 --- a/wm/windowmaker/Makefile +++ b/wm/windowmaker/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.58 2005/10/27 08:10:08 joerg Exp $ +# $NetBSD: Makefile,v 1.59 2005/12/05 20:51:10 rillig Exp $ DISTNAME= WindowMaker-0.92.0 PKGNAME= ${DISTNAME:S/WindowMaker/windowmaker/} @@ -23,7 +23,7 @@ CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR} CONFIGURE_ARGS+= --with-gnustepdir=${PREFIX}/share/GNUstep CONFIGURE_ARGS+= --with-nlsdir=${PREFIX}/${PKGLOCALEDIR}/locale CONFIGURE_ENV+= LINGUAS=yes -CONFIGURE_ENV+= CPP_PATH="${CPP}" +CONFIGURE_ENV+= CPP_PATH=${CPP:Q} .if ${MACHINE_ARCH} != "i386" CONFIGURE_ENV+= ac_cv_c_inline_asm=no .endif @@ -42,7 +42,6 @@ CONF_FILES= .for f in WMGLOBAL WMRootMenu WMState WMWindowAttributes WindowMaker CONF_FILES+= ${EGDIR}/${f} ${PKG_SYSCONFDIR}/${f} .endfor -.undef f # WINDOWMAKER_OPTIONS is a space-separated list of compile-time options # to support. Currently supported options: |