[Libreoffice-commits] .: configure.in
Tor Lillqvist
tml at kemper.freedesktop.org
Fri May 13 17:20:09 PDT 2011
configure.in | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
New commits:
commit f9fabc9c53287ef3bede891fc5e339cd2e586fc1
Author: Tor Lillqvist <tml at iki.fi>
Date: Sat May 14 03:19:41 2011 +0300
Follow our convention, set CROSS_COMPILING to YES or empty
diff --git a/configure.in b/configure.in
index 8e16acd..a8d0ef5 100755
--- a/configure.in
+++ b/configure.in
@@ -1307,7 +1307,11 @@ dnl checks build and host OSes
dnl ===================================================================
AC_CANONICAL_SYSTEM
-CROSS_COMPILING=$cross_compiling
+if test "$cross_compiling" = "yes"; then
+ CROSS_COMPILING=YES
+else
+ CROSS_COMPILING=
+fi
AC_SUBST(CROSS_COMPILING)
dnl ===================================================================
More information about the Libreoffice-commits
mailing list