summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-10-16 13:20:25 +0200
committerDavid Tardon <dtardon@redhat.com>2012-10-16 13:23:08 +0200
commitb49e97e29431e9f7248b9cd75d5a5c8fb88dfc4d (patch)
treec698ceba8332f7ee1c71f5c1ed40a147375b6b7c /configure.in
parent24f9ae3720870b61568f7034f7bc74531b1077cd (diff)
--with-lang=en-US is already the default
Change-Id: I906e025e1b7eb8ecda028eef89ac5667cd2aac13
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 3326751d5ed3..9906eadb31bc 100644
--- a/configure.in
+++ b/configure.in
@@ -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)