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 /editors/xemacs | |
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 'editors/xemacs')
-rw-r--r-- | editors/xemacs/Makefile.common | 4 | ||||
-rw-r--r-- | editors/xemacs/Makefile.pkg | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/editors/xemacs/Makefile.common b/editors/xemacs/Makefile.common index 6b1df16cfb9..934c08337cb 100644 --- a/editors/xemacs/Makefile.common +++ b/editors/xemacs/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.11 2005/07/15 18:27:49 jlam Exp $ +# $NetBSD: Makefile.common,v 1.12 2005/12/05 20:50:10 rillig Exp $ DISTNAME= xemacs-21.4.17 CATEGORIES= editors @@ -17,7 +17,7 @@ USE_TOOLS+= gtar DIST_SUBDIR= xemacs EXTRA_FILES= ${DISTNAME}-elc.tar.gz ${DISTNAME}-info.tar.gz EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -PLIST_SUBST+= DISTNAME="${DISTNAME}" +PLIST_SUBST+= DISTNAME=${DISTNAME:Q} MESSAGE_SUBST+= DISTNAME="${DISTNAME}" .include "options.mk" diff --git a/editors/xemacs/Makefile.pkg b/editors/xemacs/Makefile.pkg index 606be3e3210..f4d9be214c8 100644 --- a/editors/xemacs/Makefile.pkg +++ b/editors/xemacs/Makefile.pkg @@ -1,11 +1,11 @@ -# $NetBSD: Makefile.pkg,v 1.2 2005/06/01 18:02:46 jlam Exp $ +# $NetBSD: Makefile.pkg,v 1.3 2005/12/05 20:50:10 rillig Exp $ .include "../../mk/bsd.prefs.mk" .if !defined(XEMACS_PREFIX) XEMACS_PREFIX!= ${MAKE} XEMACS_PREFIX= EVAL_PREFIX=_XEMACS_PREFIX=xemacs \ VARNAME=_XEMACS_PREFIX show-var -MAKEFLAGS+= XEMACS_PREFIX=${XEMACS_PREFIX} +MAKEFLAGS+= XEMACS_PREFIX=${XEMACS_PREFIX:Q} .endif .if (${XEMACS_PREFIX} == ${X11BASE}) |