summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Rosenkraenzer <bero@arklinux.org>2010-11-01 17:34:28 +0100
committerPetr Mladek <pmladek@suse.cz>2010-11-01 17:36:17 +0100
commitf6f6e5409a930d2213041b9b4b151ed4eac929d0 (patch)
tree79be81d192c015823aebe2869fd8133561dcc099
parentc32df18e2f8d55e9b344586af3bd3450d7e03ed6 (diff)
correctly check Template Pack and Lightproof with --with-lang=ALL
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 7a9dc4317..396aaf4fb 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