CONFIGURE: Fix more unintentional globbing
This commit is contained in:
parent
7c23394b37
commit
08bc6f85ad
1 changed files with 10 additions and 5 deletions
15
configure
vendored
15
configure
vendored
|
@ -707,7 +707,12 @@ get_subengines_build_string() {
|
|||
subengine_build=`get_engine_build $subeng`
|
||||
subengine_build_default=`get_engine_build_default $subeng`
|
||||
if test \( $subengine_build = $2 -a "$parent_status" != wip \) -o \( "$parent_status" = wip -a $subengine_build != no -a "$subengine_build_default" = no \) ; then
|
||||
subengine_string="$subengine_string [`get_engine_name $subeng`]"
|
||||
s="[`get_engine_name $subeng`]"
|
||||
if test -n "$subengine_string"; then
|
||||
subengine_string="$subengine_string $s"
|
||||
else
|
||||
subengine_string="$s"
|
||||
fi
|
||||
else
|
||||
all=no
|
||||
fi
|
||||
|
@ -4004,28 +4009,28 @@ fi
|
|||
echo
|
||||
if test -n "$_engines_built_static" ; then
|
||||
echo "Engines (builtin):"
|
||||
echo $_engines_built_static | sed 's/@/\
|
||||
echo "$_engines_built_static" | sed 's/@/\
|
||||
/g
|
||||
s/#/ /g'
|
||||
fi
|
||||
|
||||
if test -n "$_engines_built_dynamic" ; then
|
||||
echo "Engines (plugins):"
|
||||
echo $_engines_built_dynamic | sed 's/@/\
|
||||
echo "$_engines_built_dynamic" | sed 's/@/\
|
||||
/g
|
||||
s/#/ /g'
|
||||
fi
|
||||
|
||||
if test -n "$_engines_skipped" ; then
|
||||
echo "Engines Skipped:"
|
||||
echo $_engines_skipped | sed 's/@/\
|
||||
echo "$_engines_skipped" | sed 's/@/\
|
||||
/g
|
||||
s/#/ /g'
|
||||
fi
|
||||
|
||||
if test -n "$_engines_built_wip" ; then
|
||||
echo "WARNING: This ScummVM build contains the following UNSTABLE engines:"
|
||||
echo $_engines_built_wip | sed 's/@/\
|
||||
echo "$_engines_built_wip" | sed 's/@/\
|
||||
/g
|
||||
s/#/ /g'
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue