aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>2000-08-31 02:36:40 +0000
committerTom Yu <tlyu@mit.edu>2000-08-31 02:36:40 +0000
commit74e2615165639d2933f2a5b6a13281b8db3d26a0 (patch)
tree0dfc52da6918c6b6755975f640f6ed4b655993eb
parent5969630081b7eb43a4e6d4374407544174d77770 (diff)
downloadkrb5-74e2615165639d2933f2a5b6a13281b8db3d26a0.zip
krb5-74e2615165639d2933f2a5b6a13281b8db3d26a0.tar.gz
krb5-74e2615165639d2933f2a5b6a13281b8db3d26a0.tar.bz2
* aclocal.m4 (LIBLINKS): Fix appending of $EXTRA_LIB_TARGETS to
LIBLINKS; previously it was setting LIBLINKS to include $LIBLIST instead, which is Just Wrong. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12639 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r--src/ChangeLog6
-rw-r--r--src/aclocal.m42
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 2636eb2..f216f6e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
+2000-08-30 Tom Yu <tlyu@mit.edu>
+
+ * aclocal.m4 (LIBLINKS): Fix appending of $EXTRA_LIB_TARGETS to
+ LIBLINKS; previously it was setting LIBLINKS to include $LIBLIST
+ instead, which is Just Wrong.
+
2000-08-30 Ken Raeburn <raeburn@mit.edu>
* aclocal.m4 (KRB5_LIB_AUX): Fold in values of EXTRA_LIB_TARGETS,
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index f64371a..f00792c 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -1075,7 +1075,7 @@ fi],
if test -n "$EXTRA_LIB_TARGETS"; then
LIBLIST="$LIBLIST $EXTRA_LIB_TARGETS"
fi
-LIBLINKS="$LIBLIST $EXTRA_LIBLINK_TARGETS"
+LIBLINKS="$LIBLINKS $EXTRA_LIBLINK_TARGETS"
LIBINSTLIST="$LIBINSTLIST $EXTRA_LIBINST_TARGETS"
AC_SUBST(EXTRA_CLEAN_TARGETS)
AC_SUBST(EXTRA_CLEAN_LINKS)