Commit 72a95ffa authored by Alexandre Julliard's avatar Alexandre Julliard

configure: Improve extraction of the target name from the CROSSCC definition.

parent f48e5e2b
......@@ -8366,8 +8366,21 @@ test -n "$MINGWAR" || MINGWAR="false"
then
CROSSTEST="\$(CROSSTEST)"
CROSSTARGETFLAGS="-b `expr $CROSSCC : '\(.*\)-gcc'`"
set x $CROSSCC
shift
target=""
while test $# -ge 1
do
case "$1" in
*-gcc) target=`expr "$1" : '\(.*\)-gcc'` ;;
esac
shift
done
if test -n "$target"
then
CROSSTARGETFLAGS="-b $target"
fi
fi
fi
......
......@@ -699,7 +699,20 @@ then
if test "$CROSSCC" != "false"
then
AC_SUBST(CROSSTEST,"\$(CROSSTEST)")
AC_SUBST(CROSSTARGETFLAGS,"-b `expr $CROSSCC : '\(.*\)-gcc'`")
set x $CROSSCC
shift
target=""
while test $# -ge 1
do
case "$1" in
*-gcc) target=`expr "$1" : '\(.*\)-gcc'` ;;
esac
shift
done
if test -n "$target"
then
AC_SUBST(CROSSTARGETFLAGS,"-b $target")
fi
fi
fi
......
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