aboutsummaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2006-10-22 11:59:02 +0000
committerEzra Peisach <epeisach@mit.edu>2006-10-22 11:59:02 +0000
commit4ae4ad3b541ed9bf7843d7ba4312751cc84d5634 (patch)
tree6fbeb12250d1802555cd12bd5019d1eb80e5b251 /src/config
parentfaa68ad5ae7d1504b8be9e8a7bedb0b6e533d3cd (diff)
downloadkrb5-4ae4ad3b541ed9bf7843d7ba4312751cc84d5634.zip
krb5-4ae4ad3b541ed9bf7843d7ba4312751cc84d5634.tar.gz
krb5-4ae4ad3b541ed9bf7843d7ba4312751cc84d5634.tar.bz2
osf1 -oldstyle_liblookup typo
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
Diffstat (limited to 'src/config')
-rw-r--r--src/config/shlib.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/shlib.conf b/src/config/shlib.conf
index 5e92e0e..eeb0738 100644
--- a/src/config/shlib.conf
+++ b/src/config/shlib.conf
@@ -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