Kaydet (Commit) 7fb5897a authored tarafından Bernhard Rosenkraenzer's avatar Bernhard Rosenkraenzer Kaydeden (comit) Petr Mladek

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

üst 8d4c39e1
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment