diff options
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 00e1060a5322..d9a75ca6a3e2 100644 --- a/configure.in +++ b/configure.in @@ -10345,7 +10345,7 @@ 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" || BUILD_TYPE="$BUILD_TYPE TRANSLATIONS" +test -z "$WITH_LANG" -o "$WITH_LANG" = "en-US" || BUILD_TYPE="$BUILD_TYPE TRANSLATIONS" AC_SUBST(ALL_LANGS) AC_SUBST(WITH_LANG) AC_SUBST(WITH_LANG_LIST) |