Kaydet (Commit) 40d38c21 authored tarafından Michael Stahl's avatar Michael Stahl

configure: find icecream GCC wrappers on Fedora

Change-Id: I7e5ad4e35c6d26b496f9c3a1eb24ee4f49ce57e9
Reviewed-on: https://gerrit.libreoffice.org/53200Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMichael Stahl <Michael.Stahl@cib.de>
üst e75e6b85
......@@ -2618,8 +2618,13 @@ if test "$_os" != "WINNT"; then
if test "$enable_icecream" = "yes"; then
if test -d "/usr/lib/icecc/bin"; then
GCC_HOME="/usr/lib/icecc/"
else
elif test -d "/usr/libexec/icecc/bin"; then
GCC_HOME="/usr/libexec/icecc/"
elif test -d "/opt/icecream/bin"; then
GCC_HOME="/opt/icecream/"
else
AC_MSG_ERROR([Could not figure out the location of icecream GCC wrappers, manually use --with-gcc-home])
fi
else
GCC_HOME=`which gcc | $SED -e s,/bin/gcc,,`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment