osf1 -oldstyle_liblookup typo
authorEzra Peisach <epeisach@mit.edu>
Sun, 22 Oct 2006 11:59:02 +0000 (11:59 +0000)
committerEzra Peisach <epeisach@mit.edu>
Sun, 22 Oct 2006 11:59:02 +0000 (11:59 +0000)
Not really relevant anymore - as we do not support static linking now.
But in ticket 927 (r16776) - a test was added to determine if gnu ld
was in use and change the linker flags accordingly.  The variable in
aclocal.m4 was krb5_cv_prog_gnu_ld and this was testing for
krb5_cv_gnu_ld.

ticket: new

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

src/config/shlib.conf

index 5e92e0e4926eef348835f8cddaf49570029fbac6..eeb073816abb40cafd3afc0f4a35817193d217b2 100644 (file)
@@ -68,7 +68,7 @@ alpha*-dec-osf*)
        RPATH_FLAG='-Wl,-rpath -Wl,'
        CC_LINK_SHARED='$(CC) $(PROG_LIBPATH) $(RPATH_FLAG)$(PROG_RPATH) $(CFLAGS) $(PTHREAD_CFLAGS) $(LDFLAGS)'
        if test "$krb5_cv_prog_gcc" = yes \
-               && test "$krb5_cv_gnu_ld" = yes; then
+               && test "$krb5_cv_prog_gnu_ld" = yes; then
                # Really should check for gnu ld vs system ld, too.
                CC_LINK_STATIC='$(CC) $(PROG_LIBPATH) $(CFLAGS) $(PTHREAD_CFLAGS) $(LDFLAGS)'
        else