Date: Mon, 17 Dec 2012 20:50:52 +0000 (UTC) From: Wesley Shields <wxs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309129 - head/audio/aumix Message-ID: <201212172050.qBHKoqWK068761@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212172050.qBHKoqWK068761>