diff options
author | dholland <dholland@pkgsrc.org> | 2012-07-01 01:32:21 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2012-07-01 01:32:21 +0000 |
commit | da53f9001f83d4ab5022edb8cf8f22e9619814b7 (patch) | |
tree | 5bdc143e43af95319ec8b91aa91e7fdda2d0d7b3 /x11/wxGTK28/Makefile | |
parent | 63d2748f5723f1dc0f1482912521c93e7625a439 (diff) | |
download | pkgsrc-da53f9001f83d4ab5022edb8cf8f22e9619814b7.tar.gz |
Fix some pkglint.
Diffstat (limited to 'x11/wxGTK28/Makefile')
-rw-r--r-- | x11/wxGTK28/Makefile | 12 |
1 files changed, 6 insertions, 6 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" |