don't output strange "base (hosted)" message when not cross-compiling

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21470 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-06-28 11:39:19 +00:00
parent 6c3e36af8f
commit 9de9b8f0fc
2 changed files with 14 additions and 3 deletions

View File

@@ -1186,7 +1186,11 @@ if test "$wxUSE_GUI" = "yes"; then
fi
done
else
AC_MSG_RESULT(base ($host_alias hosted) only)
if test "x$host_alias" != "x"; then
AC_MSG_RESULT(base ($host_alias hosted) only)
else
AC_MSG_RESULT(base only)
fi
fi
dnl ---------------------------------------------------------------------------