[svn-r7946] Purpose:

Bug fix

Description:
    Fix problems building on Debian Linux when Intel's "ecc" compiler is
not available.

Platforms tested:
    Eyeballed - very trivial patch from user.
This commit is contained in:
Quincey Koziol 2003-12-13 13:46:10 -05:00
parent a8161177b9
commit 09c83fc827

View File

@ -4,8 +4,8 @@
# after configure starts and defines, among other things, flags for
# the various compile modes.
# Use Intel C compiler by default.
if test "X$CC" = "X"; then
# Use Intel C compiler by default (if it's available).
if test "X$CC" = "X" && which ecc > /dev/null; then
CC=ecc
CC_BASENAME=ecc
fi