From 74e2615165639d2933f2a5b6a13281b8db3d26a0 Mon Sep 17 00:00:00 2001 From: Tom Yu Date: Thu, 31 Aug 2000 02:36:40 +0000 Subject: [PATCH] * 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 --- src/ChangeLog | 6 ++++++ src/aclocal.m4 | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 2636eb291..f216f6eef 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2000-08-30 Tom Yu + + * 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 * aclocal.m4 (KRB5_LIB_AUX): Fold in values of EXTRA_LIB_TARGETS, diff --git a/src/aclocal.m4 b/src/aclocal.m4 index f64371a09..f00792c7b 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) -- 2.26.2