[Libreoffice-commits] .: configure.in

Petr Mladek pmladek at kemper.freedesktop.org
Mon Nov 1 09:36:45 PDT 2010


 configure.in |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f6f6e5409a930d2213041b9b4b151ed4eac929d0
Author: Bernhard Rosenkraenzer <bero at arklinux.org>
Date:   Mon Nov 1 17:34:28 2010 +0100

    correctly check Template Pack and Lightproof with --with-lang=ALL

diff --git a/configure.in b/configure.in
index 7a9dc43..396aaf4 100644
--- a/configure.in
+++ b/configure.in
@@ -6999,7 +6999,7 @@ else
     LIGHTPROOF_LANG=
     # check whether the langs are requested at all
     for lang in $wanted_lightproof ; do
-    if test -n "`echo $with_lang | grep "$lang"`" ; then
+    if test "$with_lang" = "ALL" -o -n "`echo $with_lang | grep "$lang"`" ; then
         LIGHTPROOF_LANG="$LIGHTPROOF_LANG $lang"
     fi
     done
@@ -7173,7 +7173,7 @@ else
     SUNTEMPLATES_LANG=
     # check whether the langs are requested at all
     for lang in $wanted_sun_templates ; do
-    if test -n "`echo $with_lang | grep "$lang"`" ; then
+    if test "$with_lang" = "ALL" -o -n "`echo $with_lang | grep "$lang"`" ; then
         SUNTEMPLATES_LANG="$SUNTEMPLATES_LANG $lang"
     fi
     done


More information about the Libreoffice-commits mailing list