[Libreoffice-commits] .: configure.in

Norbert Thiebaud nthiebaud at kemper.freedesktop.org
Sat Dec 31 05:43:01 PST 2011


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

New commits:
commit d1a26ef6542a68854d61aa62156e3aab61e0e68b
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date:   Sat Dec 31 07:41:31 2011 -0600

    fix 64 bits build detection for cygwin

diff --git a/configure.in b/configure.in
index 6d3d3aa..b26aa2c 100644
--- a/configure.in
+++ b/configure.in
@@ -2561,7 +2561,7 @@ cygwin*)
 
     case "$host_cpu" in
     i*86|x86_64)
-        if test "$CL_X64" = ""; then
+        if test "$CL_X64" != ""; then
             CPU=X
             CPUNAME=X86_64
             OUTPATH=wntmscx$COMEX
@@ -2770,7 +2770,7 @@ mingw*)
 
     case "$host_cpu" in
     i*86|x86_64)
-        if test "$CL_X64" = ""; then
+        if test "$CL_X64" != ""; then
             CPU=X
             CPUNAME=X86_64
             OUTPATH=wntgccx$COMEX


More information about the Libreoffice-commits mailing list