Oops, naughty naughty. Use $(CC), not gcc
authorKen Raeburn <raeburn@mit.edu>
Sat, 13 Sep 2003 04:17:08 +0000 (04:17 +0000)
committerKen Raeburn <raeburn@mit.edu>
Sat, 13 Sep 2003 04:17:08 +0000 (04:17 +0000)
ticket: 1790

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15819 dc483132-0cff-0310-8789-dd5450dbe970

src/config/ChangeLog
src/config/shlib.conf

index 6b3ff9ee2080c94fd687171be642172dfaf0d239..a65196668cbbd11bbca7e05758779c6d40c2a88c 100644 (file)
@@ -1,7 +1,7 @@
 2003-09-13  Ken Raeburn  <raeburn@mit.edu>
 
-       * 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  <raeburn@mit.edu>
index 7422d0a69e948e592360db8bfa1068b81ce13ab3..7f04155cc810cd6ed8e12c9e701ca10f610d609f 100644 (file)
@@ -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...