* aclocal.m4 (LIBLINKS): Fix appending of $EXTRA_LIB_TARGETS to
authorTom Yu <tlyu@mit.edu>
Thu, 31 Aug 2000 02:36:40 +0000 (02:36 +0000)
committerTom Yu <tlyu@mit.edu>
Thu, 31 Aug 2000 02:36:40 +0000 (02:36 +0000)
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

src/ChangeLog
src/aclocal.m4

index 2636eb2916806c95a51e5d6ba286156d170eb4d6..f216f6eef72b5c43e9c6e4ba2c5e0eb70a5802b9 100644 (file)
@@ -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,
index f64371a09529e1ba5012c1bb8242a65fe5f5c132..f00792c7be8753da63975abdc08d842de93ec3d4 100644 (file)
@@ -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)