From: Ken Raeburn Date: Sat, 13 Sep 2003 04:17:08 +0000 (+0000) Subject: Oops, naughty naughty. Use $(CC), not gcc X-Git-Tag: krb5-1.4-beta1~739 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=80c29ae9071f0f35666be969c78e40ff33845d8c;p=thirdparty%2Fkrb5.git Oops, naughty naughty. Use $(CC), not gcc ticket: 1790 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15819 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/config/ChangeLog b/src/config/ChangeLog index 6b3ff9ee20..a65196668c 100644 --- a/src/config/ChangeLog +++ b/src/config/ChangeLog @@ -1,7 +1,7 @@ 2003-09-13 Ken Raeburn - * shlib.conf (*-*-linux*): Use gcc for linking shared libraries, - and -Wl to pass linker flags in, so gcc can supply the necessary + * shlib.conf (*-*-linux*): Use $(CC) for linking shared libraries, + and -Wl to pass linker flags in, so it can supply the necessary support libraries. 2003-08-29 Ken Raeburn diff --git a/src/config/shlib.conf b/src/config/shlib.conf index 7422d0a69e..7f04155cc8 100644 --- a/src/config/shlib.conf +++ b/src/config/shlib.conf @@ -263,7 +263,7 @@ mips-*-netbsd*) SHLIBEXT=.so # Linux ld doesn't default to stuffing the SONAME field... # Use objdump -x to examine the fields of the library - LDCOMBINE='gcc -shared -fPIC -Wl,-h,lib$(LIB)$(SHLIBSEXT)' + LDCOMBINE='$(CC) -shared -fPIC -Wl,-h,lib$(LIB)$(SHLIBSEXT)' LDCOMBINE_TAIL='' # For cases where we do have dependencies on other libraries # built in this tree...