--with-lang=en-US is already the default

Change-Id: I906e025e1b7eb8ecda028eef89ac5667cd2aac13
This commit is contained in:
David Tardon
2012-10-16 13:20:25 +02:00
parent 24f9ae3720
commit b49e97e294

View File

@@ -12204,7 +12204,8 @@ WITH_LANG_LIST=`echo $WITH_LANG | sed "s/ALL/$ALL_LANGS/"`
# this variable is used only by bin/distro-install-* helper scripts
# they need a real list of languages
test -z "$WITH_LANG_LIST" && WITH_LANG_LIST="en-US"
test -z "$WITH_LANG" -o "$WITH_LANG" = "en-US" || BUILD_TYPE="$BUILD_TYPE TRANSLATIONS"
test "$WITH_LANG" = "en-US" && WITH_LANG=
test -z "$WITH_LANG" || BUILD_TYPE="$BUILD_TYPE TRANSLATIONS"
AC_SUBST(ALL_LANGS)
AC_SUBST(WITH_LANG)
AC_SUBST(WITH_LANG_LIST)