diff options
author | marino <marino@FreeBSD.org> | 2013-07-15 13:37:39 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2013-07-15 13:37:39 +0800 |
commit | c0a945b9467843d09fb58510ef03c1e199316421 (patch) | |
tree | 538550d83df272cae3c59deb0a9e1755f5dfd269 /cad | |
parent | f81ecc274c4b38e60935d18c2deb16e85a19966e (diff) | |
download | freebsd-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/Makefile | 2 |
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 |