summaryrefslogtreecommitdiff
path: root/x11/wxGTK28
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2012-07-01 01:32:21 +0000
committerdholland <dholland@pkgsrc.org>2012-07-01 01:32:21 +0000
commitda53f9001f83d4ab5022edb8cf8f22e9619814b7 (patch)
tree5bdc143e43af95319ec8b91aa91e7fdda2d0d7b3 /x11/wxGTK28
parent63d2748f5723f1dc0f1482912521c93e7625a439 (diff)
downloadpkgsrc-da53f9001f83d4ab5022edb8cf8f22e9619814b7.tar.gz
Fix some pkglint.
Diffstat (limited to 'x11/wxGTK28')
-rw-r--r--x11/wxGTK28/Makefile12
-rw-r--r--x11/wxGTK28/Makefile.common8
2 files changed, 10 insertions, 10 deletions
diff --git a/x11/wxGTK28/Makefile b/x11/wxGTK28/Makefile
index 51c85ec3f57..3fe50bea0af 100644
--- a/x11/wxGTK28/Makefile
+++ b/x11/wxGTK28/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.22 2012/06/16 23:05:41 wiz Exp $
+# $NetBSD: Makefile,v 1.23 2012/07/01 01:32:21 dholland Exp $
#
.include "../../x11/wxGTK28/Makefile.common"
@@ -17,13 +17,13 @@ REPLACE_SH= wx-config.in wx-config-inplace.in
post-build:
set -e; cd ${WRKSRC}/locale; \
- for lang in `echo *.po` ; do \
- [ $${lang} = "wxstd.po" ] && continue; \
- ${TOOLS_PATH.msgfmt} -c -o $${lang%.po}.mo $${lang}; \
+ for lang in *.po; do \
+ [ "$${lang}" = "wxstd.po" ] && continue; \
+ ${TOOLS_PATH.msgfmt} -c -o "$${lang%.po}.mo" "$${lang}"; \
done
set -e; cd ${WRKSRC}/locale/msw; \
for lang in it; do \
- ${TOOLS_PATH.msgfmt} -c -o $${lang}.mo $${lang}.po; \
+ ${TOOLS_PATH.msgfmt} -c -o "$${lang}.mo" "$${lang}.po"; \
done
post-install:
@@ -33,7 +33,7 @@ post-install:
# for backtrace
.if ${OPSYS} == "NetBSD" && exists(/usr/include/execinfo.h)
-LIBS+= -lexecinfo
+LIBS+= -lexecinfo
.endif
.include "../../mk/oss.buildlink3.mk"
diff --git a/x11/wxGTK28/Makefile.common b/x11/wxGTK28/Makefile.common
index 16f84665019..7a093790c9a 100644
--- a/x11/wxGTK28/Makefile.common
+++ b/x11/wxGTK28/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.12 2012/03/12 10:39:13 fhajny Exp $
+# $NetBSD: Makefile.common,v 1.13 2012/07/01 01:32:21 dholland Exp $
#
# used by x11/wxGTK28/Makefile
# used by x11/wxGTK28-contrib/Makefile
@@ -39,7 +39,7 @@ CONFIGURE_ARGS+= --enable-mediactrl
DOCDIR= ${PREFIX}/share/doc/wxGTK
PKGLOCALEDIR= share
-CONFIGURE_DIRS= ${WRKSRC}/build-non-unicode ${WRKSRC}/build-unicode
+CONFIGURE_DIRS= build-non-unicode build-unicode
INSTALL_MAKE_FLAGS+= LN_S="ln -fs"
@@ -57,9 +57,9 @@ SUBST_SED.fix-paths+= -e 's,@PREFIX@,${PREFIX},g'
pre-configure:
mkdir ${WRKSRC}/build-non-unicode ${WRKSRC}/build-unicode
- printf '#!%s\n../configure --enable-unicode "$$@"' ${SH:Q} \
+ printf '#!%s\n../configure --enable-unicode "$$@"' ${SH} \
> ${WRKSRC}/build-unicode/configure
- printf '#!%s\n../configure --disable-unicode "$$@"' ${SH:Q} \
+ printf '#!%s\n../configure --disable-unicode "$$@"' ${SH} \
> ${WRKSRC}/build-non-unicode/configure
.include "../../multimedia/gstreamer0.10/buildlink3.mk"