aboutsummaryrefslogtreecommitdiff
path: root/port-files/FreeBSD/Makefile
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-09-26 13:44:06 -0400
committerKen Moore <ken@ixsystems.com>2016-09-26 13:44:06 -0400
commit9e6d12eec123a2ec851449526497587c6e735eb8 (patch)
treede26ae2158e85d9cb6dca7507efb6de919d1b123 /port-files/FreeBSD/Makefile
parentAlso ensure that the Qt5 linguist tools are used during the build if the i18n... (diff)
downloadlumina-9e6d12eec123a2ec851449526497587c6e735eb8.tar.gz
lumina-9e6d12eec123a2ec851449526497587c6e735eb8.tar.bz2
lumina-9e6d12eec123a2ec851449526497587c6e735eb8.zip
Fix a syntax issue with the new i18n option in the FreeBSD makefile.
Diffstat (limited to 'port-files/FreeBSD/Makefile')
-rw-r--r--port-files/FreeBSD/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/port-files/FreeBSD/Makefile b/port-files/FreeBSD/Makefile
index 5830711d..9b86ada1 100644
--- a/port-files/FreeBSD/Makefile
+++ b/port-files/FreeBSD/Makefile
@@ -56,7 +56,7 @@ QMAKE_ARGS= DEFAULT_SETTINGS=TrueOS
.if${PORT_OPTIONS:MI18N}
USE_QT5+= linguist_build
-QMAKE_ARGS+=WITH_I18N
+QMAKE_ARGS+=CONFIG+=WITH_I18N
.endif
.include <bsd.port.mk>
bgstack15