[Libreoffice-commits] core.git: configure.ac

Tor Lillqvist tml at iki.fi
Sat Jun 15 01:16:56 PDT 2013


 configure.ac |   10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

New commits:
commit 4f4bc1ffc02ea1e0a18942322fdb0ade597c392c
Author: Tor Lillqvist <tml at iki.fi>
Date:   Sat Jun 15 11:16:19 2013 +0300

    Fix iOS build glitch
    
    Change-Id: I2d1d8600faa87ad273c1af55de73e455fbe6f68c

diff --git a/configure.ac b/configure.ac
index 673f774..5bca1f5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2395,11 +2395,10 @@ fi
 
 
 dnl ===================================================================
-dnl Check / find MacOSX SDK and compiler, version checks
+dnl Check OS X SDK and compiler
 dnl ===================================================================
-if test "$_os" = "Darwin"; then
 
-    xcode_developer=`xcoce-select -print-path`
+if test $_os = Darwin; then
 
     if test "$enable_64_bit" = "" -o "$enable_64_bit" = "no"; then
         bitness=-m32
@@ -2668,12 +2667,15 @@ AC_SUBST(ENABLE_MACOSX_SANDBOX)
 AC_SUBST(MACOSX_BUNDLE_IDENTIFIER)
 
 dnl ===================================================================
-dnl Check / find iOS SDK and compiler, version checks
+dnl Check iOS SDK and compiler
 dnl ===================================================================
+
 if test $_os = iOS; then
 
     AC_MSG_CHECKING([what iOS SDK to use])
 
+    xcode_developer=`xcode-select -print-path`
+
     if test "$enable_ios_simulator" = yes; then
         platform=iPhoneSimulator
         versionmin=-mmacosx-version-min=10.7


More information about the Libreoffice-commits mailing list