aboutsummaryrefslogtreecommitdiff
path: root/cad/pcb
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2013-07-15 05:37:39 +0000
committerJohn Marino <marino@FreeBSD.org>2013-07-15 05:37:39 +0000
commitbcf15de2849669fcaf2521c2de53b86f3a667963 (patch)
tree538550d83df272cae3c59deb0a9e1755f5dfd269 /cad/pcb
parentf404e4b825d9bff879c3f346450c0116856c0fb7 (diff)
downloadports-bcf15de2849669fcaf2521c2de53b86f3a667963.tar.gz
ports-bcf15de2849669fcaf2521c2de53b86f3a667963.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)
Notes
Notes: svn path=/head/; revision=323015
Diffstat (limited to 'cad/pcb')
-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