[Libreoffice-commits] .: configure.in

Jan Holesovsky kendy at kemper.freedesktop.org
Tue Jan 18 01:47:37 PST 2011


 configure.in |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 99d6156fc6d9387b3c318074f2cd30647dec6792
Author: Jan Holesovsky <kendy at suse.cz>
Date:   Tue Jan 18 10:45:45 2011 +0100

    Fix ./configure on 32bit Windows.

diff --git a/configure.in b/configure.in
index 4fa3a81..bdbe740 100755
--- a/configure.in
+++ b/configure.in
@@ -2141,7 +2141,7 @@ if test "$_os" = "WINNT"; then
         AC_MSG_CHECKING([for a friendly Microsoft C/C++ compiler installation path])
         if test -z "$with_cl_home"; then
             vctest=`./oowintool --msvc-productdir`;
-            if test $CL_X64 = ""; then
+            if test "$CL_X64" = ""; then
                 if test -x "$vctest/bin/cl.exe"; then
                     with_cl_home=$vctest;
                 fi
@@ -2194,7 +2194,7 @@ if test "$_os" = "WINNT"; then
         PATH="$MSPDB_PATH:$PATH"
 
         AC_MSG_CHECKING([the Microsoft C/C++ Compiler])
-        if test $CL_X64 = ""; then
+        if test "$CL_X64" = ""; then
             if test -x "$with_cl_home/bin/cl.exe"; then
                 CC="$with_cl_home/bin/cl.exe"
             fi
@@ -2213,7 +2213,7 @@ if test "$_os" = "WINNT"; then
             CC=`cygpath -u "$CC"`
             # Remove /cl.exe from CC case insensitive
             AC_MSG_RESULT([found ($CC)])
-            if test $CL_X64 = ""; then
+            if test "$CL_X64" = ""; then
                 COMPATH=`echo $CC | $SED 's@\/[[Bb]][[Ii]][[Nn]]\/[[cC]][[lL]]\.[[eE]][[xX]][[eE]]@@'`
             else
                 if test -n "$with_cl_home"; then
@@ -6053,7 +6053,7 @@ AC_SUBST(CYGWIN_PATH)
 dnl ***************************************
 dnl testing assembler path
 dnl ***************************************
-if test $CL_X64 = ""; then
+if test "$CL_X64" = ""; then
   assembler=ml.exe
   assembler_bin=bin
 else


More information about the Libreoffice-commits mailing list