diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2012-02-19 14:34:10 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2012-02-19 14:35:12 +0100 |
commit | eb7cb5b61c43ba7c78cb0a8d4aef3780df0151cd (patch) | |
tree | 78f8bae3976f2e8f9bec807e233dea8dcabc7ee3 /configure.in | |
parent | d30b4e9fb66f377295d8eeea8c1b1cf879aecdf6 (diff) |
configure: no need to fetch the translations repo for --with-lang=en-US
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 5d408ff661c5..00e1060a5322 100644 --- a/configure.in +++ b/configure.in @@ -10321,7 +10321,7 @@ AC_MSG_CHECKING([which languages to be built]) ALL_LANGS="en-US $completelangiso" # check the configured localizations WITH_LANG="$with_lang" -if test -z "$WITH_LANG"; then +if test -z "$WITH_LANG" -o "$WITH_LANG" = "en-US"; then AC_MSG_RESULT([en-US]) else AC_MSG_RESULT([$WITH_LANG]) |