aboutsummaryrefslogtreecommitdiffstats
path: root/cad
diff options
context:
space:
mode:
authormarino <marino@FreeBSD.org>2013-07-15 13:37:39 +0800
committermarino <marino@FreeBSD.org>2013-07-15 13:37:39 +0800
commitc0a945b9467843d09fb58510ef03c1e199316421 (patch)
tree538550d83df272cae3c59deb0a9e1755f5dfd269 /cad
parentf81ecc274c4b38e60935d18c2deb16e85a19966e (diff)
downloadfreebsd-ports-gnome-c0a945b9467843d09fb58510ef03c1e199316421.tar.gz
freebsd-ports-gnome-c0a945b9467843d09fb58510ef03c1e199316421.tar.zst
freebsd-ports-gnome-c0a945b9467843d09fb58510ef03c1e199316421.zip
cad/pcb: unbreak after USES= gmake
The makefile already had USES defined in the NLS option. After replacing USE_GMAKE with "USES= gmake", the value of USES is subsequently overwritten by the default-on NLS option. Change the NLS option to USES+= to fix. Approved by: hrs (maintainer)
Diffstat (limited to 'cad')
-rw-r--r--cad/pcb/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/cad/pcb/Makefile b/cad/pcb/Makefile
index 73a388248880..f3bbee815d4c 100644
--- a/cad/pcb/Makefile
+++ b/cad/pcb/Makefile
@@ -48,7 +48,7 @@ CONFIGURE_ARGS+= \
--enable-nls \
--with-libiconv-prefix=${LOCALBASE} \
--with-libintl-prefix=${LOCALBASE}
-USES= gettext iconv
+USES+= gettext iconv
.for L in fr nl ru
PLIST_FILES+= share/locale/${L}/LC_MESSAGES/pcb.mo
.endfor