svn commit: r309129 - head/audio/aumix
Wesley Shields
wxs at FreeBSD.org
Mon Dec 17 20:50:52 UTC 2012
Author: wxs
Date: Mon Dec 17 20:50:51 2012
New Revision: 309129
URL: http://svnweb.freebsd.org/changeset/ports/309129
Log:
The NLS logic was inverted, so fix it.
Noticed by: Marius Strobl
Modified:
head/audio/aumix/Makefile
Modified: head/audio/aumix/Makefile
==============================================================================
--- head/audio/aumix/Makefile Mon Dec 17 20:38:13 2012 (r309128)
+++ head/audio/aumix/Makefile Mon Dec 17 20:50:51 2012 (r309129)
@@ -35,13 +35,13 @@ OPTIONS_DEFINE= NLS GTK2
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
-CONFIGURE_ARGS+=--disable-nls
-.else
USE_GETTEXT= yes
.for ii in ca de el es fr gl it ja nl pl pt_BR ru sv uk zh_CN
PLIST_FILES+= share/locale/${ii}/LC_MESSAGES/aumix.mo
.endfor
+.else
+CONFIGURE_ARGS+=--disable-nls
.endif
.if ${PORT_OPTIONS:MGTK2}
More information about the svn-ports-head
mailing list