From: Paul Park Date: Tue, 29 Aug 1995 18:47:54 +0000 (+0000) Subject: Replace explicit library list with $(LIBS) so we get -lsocket on Solaris X-Git-Tag: krb5-1.0-beta6~1223 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f1fa041b87cc5be02be54d7909a727641af4f2b7;p=krb5.git Replace explicit library list with $(LIBS) so we get -lsocket on Solaris git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6633 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/tests/dejagnu/ChangeLog b/src/tests/dejagnu/ChangeLog index 6cb4fee7e..7effbfe68 100644 --- a/src/tests/dejagnu/ChangeLog +++ b/src/tests/dejagnu/ChangeLog @@ -1,3 +1,8 @@ + +Tue Aug 29 14:22:28 EDT 1995 Paul Park (pjpark@mit.edu) + * Makefile.in - Replace explicit library list with $(LIBS). This + gets set with the needed libraries (e.g. -lsocket on Solaris). + Sat Aug 26 18:10:44 1995 Ezra Peisach (epeisach@kangaroo.mit.edu) * .Sanitize: Add t_inetd.c diff --git a/src/tests/dejagnu/Makefile.in b/src/tests/dejagnu/Makefile.in index 8d20ba0f1..079a5129a 100644 --- a/src/tests/dejagnu/Makefile.in +++ b/src/tests/dejagnu/Makefile.in @@ -14,7 +14,7 @@ check-runtest:: t_inetd CFLAGS = $(CCOPTS) $(DEFS) t_inetd:: t_inetd.o $(DEPLIBS) - $(LD) $(LDFLAGS) $(LDARGS) -o t_inetd t_inetd.o -lcom_err + $(LD) $(LDFLAGS) $(LDARGS) -o t_inetd t_inetd.o $(LIBS) clean:: $(RM) t_inetd t_inetd.o