configure: Don't set target flags if build and host are the same.

oldstable
Alexandre Julliard 2009-02-16 13:08:44 +01:00
parent 95251a78e8
commit 4d135d9a71
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -3943,7 +3943,7 @@ fi
$as_echo "$wine_cv_toolsdir" >&6; }
TOOLSDIR=$wine_cv_toolsdir
if test -n "$host_alias"
if test -n "$host_alias" -a "$host_alias" != "$build_alias"
then
TARGETFLAGS="-b $host_alias $TARGETFLAGS"

View File

@ -169,7 +169,7 @@ AC_CACHE_CHECK([for the directory containing the Wine tools], wine_cv_toolsdir,
AC_MSG_ERROR([could not find Wine tools in $with_wine_tools.])
fi])
AC_SUBST(TOOLSDIR,$wine_cv_toolsdir)
if test -n "$host_alias"
if test -n "$host_alias" -a "$host_alias" != "$build_alias"
then
AC_SUBST(TARGETFLAGS,"-b $host_alias $TARGETFLAGS")
fi