Added missing $(LIBS) to link line
authorTheodore Tso <tytso@mit.edu>
Thu, 18 Aug 1994 20:18:04 +0000 (20:18 +0000)
committerTheodore Tso <tytso@mit.edu>
Thu, 18 Aug 1994 20:18:04 +0000 (20:18 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4184 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/mailquery/ChangeLog
src/appl/mailquery/Makefile.in

index 2ed38249827bf3de424e74e10f002777d2b141ea..151f91d5af3fdeb47fa9e6076e25c1709eab6e7f 100644 (file)
@@ -1,3 +1,7 @@
+Thu Aug 18 16:15:36 1994  Theodore Y. Ts'o  (tytso@dcl)
+
+       * Makefile.in: Added missing $(LIBS) to link line.
+
 Thu Aug 18 13:43:07 1994  Theodore Y. Ts'o  (tytso at tsx-11)
 
        * mailquery.c: Move usage() before main() to solve redeclaration
index 2ca0e7d43e61e9bef641528202ae9c36006d5082..5c64bdc9402038de9b89f0dbd865a02b46ddaf40 100644 (file)
@@ -8,7 +8,8 @@ KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DB
 HESIODLIB =
 
 mailquery: mailquery.o poplib.o
-       $(CC) $(CFLAGS) -o mailquery mailquery.o poplib.o $(KLIB) $(HESIODLIB)
+       $(CC) $(CFLAGS) -o mailquery mailquery.o poplib.o $(KLIB) \
+               $(HESIODLIB) $(LIBS)
 
 mailquery.o:   $(srcdir)/mailquery.c
 poplib.o:      $(srcdir)/poplib.c