diff options
author | Vincent Richard <[email protected]> | 2010-02-15 09:05:49 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2010-02-15 09:05:49 +0000 |
commit | e4cbcefad13e55c64274c321a5ae0fef815092e0 (patch) | |
tree | da6c394369f6f677177747fc854ac38ce9240cc3 | |
parent | Updated gettext m4 macros to 0.17. (diff) | |
download | vmime-e4cbcefad13e55c64274c321a5ae0fef815092e0.tar.gz vmime-e4cbcefad13e55c64274c321a5ae0fef815092e0.zip |
Fixed test for global constructor failing when cross building.
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1364,7 +1364,7 @@ sh libtool --mode=link $CXX -o libtest.la -rpath / -version-info 0 mylib.lo >&5 $CXX -c $CFLAGS $CPPFLAGS mytest.$ac_ext >&5 sh libtool --mode=link $CXX -o mytest mytest.o libtest.la >&5 2>/dev/null -if test -x mytest; then +if test -x mytest -a "$cross_compiling" != yes; then myresult=`./mytest` if test "X$myresult" = "XPASS"; then AC_MSG_RESULT(yes) |