package/win32: only enable/disable NLS once

It's on by default, so not needed in configure.sh.
This commit is contained in:
Steve Lhomme 2024-11-19 07:28:03 +01:00
parent dcecf6598c
commit 96ba69a152
2 changed files with 4 additions and 2 deletions

View File

@ -456,6 +456,9 @@ fi
if [ "$I18N" != "yes" ]; then
CONFIGFLAGS="$CONFIGFLAGS --disable-nls"
MCONFIGFLAGS="$MCONFIGFLAGS -Dnls=disabled"
else
CONFIGFLAGS="$CONFIGFLAGS --enable-nls"
MCONFIGFLAGS="$MCONFIGFLAGS -Dnls=enabled"
fi
if [ -n "$BREAKPAD" ]; then
CONFIGFLAGS="$CONFIGFLAGS --with-breakpad=$BREAKPAD"

View File

@ -12,7 +12,6 @@ OPTIONS="
--enable-goom
--enable-sse
--enable-libcddb
--enable-zvbi --disable-telx
--enable-nls"
--enable-zvbi --disable-telx"
sh "$(dirname $0)"/../../../configure ${OPTIONS} "$@"