diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-06-19 13:36:27 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-06-19 15:15:00 +0300 |
commit | a662d427108d781122f979392ce544017d14fc17 (patch) | |
tree | 4c9519489c7c42e9436b91bcb0e9906ef847f3b9 | |
parent | 18eba6a69f49c9e8e2902f84e96cb6906ee337f1 (diff) |
Don't use -d32 when building 64-bit code
Change-Id: I83a960cebb8347170a08d2fda7ed11050b8c4229
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 3f36bcae67c8..51a534f57f96 100644 --- a/configure.ac +++ b/configure.ac @@ -6253,7 +6253,7 @@ if test "$SOLAR_JAVA" != ""; then fi JAVAINTERPRETER=`cygpath -d "$JAVAINTERPRETER"` JAVAINTERPRETER=`cygpath -u "$JAVAINTERPRETER"` - elif test "$_os" = "Darwin"; then + elif test $_os = Darwin -a "$BITNESS_OVERRIDE" = ""; then dnl HACK: There currently is only a 32 bit version of LibreOffice for Mac OS X, dnl and Tiger Java complains about -d32 while Snow Leopard Java needs it dnl to run in 32 bit mode and be able to load LibreOffice jnilibs: |