fix test for cross compiling

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36786 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2013-07-01 12:02:09 +00:00
parent 6467fb37ec
commit 7e0decabf6
2 changed files with 2 additions and 2 deletions

2
configure vendored
View file

@ -13537,7 +13537,7 @@ fi
#--------------------------------------------------------------------
# Check for ObjC2 support in runtime
#--------------------------------------------------------------------
if test "$cross_compiling"="yes"; then
if test "$cross_compiling" = "yes"; then
{ $as_echo "$as_me:$LINENO: \"Cross compiling! Using predefined OBJC2RUNTIME variable\"" >&5
$as_echo "$as_me: \"Cross compiling! Using predefined OBJC2RUNTIME variable\"" >&6;}
OBJC2RUNTIME="$cross_objc2_runtime"

View file

@ -1845,7 +1845,7 @@ AC_SUBST(OBJCSYNC)
#--------------------------------------------------------------------
# Check for ObjC2 support in runtime
#--------------------------------------------------------------------
if test "$cross_compiling"="yes"; then
if test "$cross_compiling" = "yes"; then
AC_MSG_NOTICE(["Cross compiling! Using predefined OBJC2RUNTIME variable"])
OBJC2RUNTIME="$cross_objc2_runtime"
else