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

Michael Meeks michael.meeks at suse.com
Mon Mar 25 03:29:30 PDT 2013


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

New commits:
commit 1a843cc54dd6a08fa5fccb4314c025d432e46ad1
Author: Michael Meeks <michael.meeks at suse.com>
Date:   Mon Mar 25 10:28:12 2013 +0000

    band-aid fix for icecream regression
    
    from commit: 02ed2608199f2adc466849d0f4864213ad07c445
    
    Change-Id: If67b2166e8f12cf277f615721f030898232c4937

diff --git a/configure.ac b/configure.ac
index 089df41..ac433c8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2283,15 +2283,15 @@ dnl  Checks for Icecream
 dnl ===================================================================
 if test "$enable_icecream" = "yes"; then
     if test -d "/usr/lib/icecc/bin"; then
-	ICECREAM_HOME="/usr/lib/icecc/"
+        ICECREAM_HOME="/usr/lib/icecc"
     else
-	ICECREAM_HOME="/opt/icecream/"
+        ICECREAM_HOME="/opt/icecream"
     fi
     if test -z "$CC"; then
-	CC="$GCC_HOME/bin/gcc"
+    	CC="$ICECREAM_HOME/bin/gcc"
     fi
     if test -z "$CXX"; then
-	CXX="$GCC_HOME/bin/g++"
+    	CXX="$ICECREAM_HOME/bin/g++"
     fi
 fi
 


More information about the Libreoffice-commits mailing list