aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/stallion
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1997-12-17 10:06:51 +0000
committerBruce Evans <bde@FreeBSD.org>1997-12-17 10:06:51 +0000
commit13b6695c0cd2cceb148b7cb79e87283fbb91c626 (patch)
treee94d06cd2add68235cc90134cb7494c911bae878 /usr.sbin/stallion
parent76ef01374ec5e0b6129cbe4d614813d31541a19f (diff)
Fixed building with NOSHARED=YES. libncurses depends on libmytinfo but
libmytinfo was not mentioned explicitly. The bug was hidden by the linkage of libncurses to libmytinfo in the shared library case.
Notes
Notes: svn path=/head/; revision=31802
Diffstat (limited to 'usr.sbin/stallion')
-rw-r--r--usr.sbin/stallion/stlstats/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/stallion/stlstats/Makefile b/usr.sbin/stallion/stlstats/Makefile
index 8f1b8e7de3af..0789c070300d 100644
--- a/usr.sbin/stallion/stlstats/Makefile
+++ b/usr.sbin/stallion/stlstats/Makefile
@@ -1,9 +1,9 @@
-# $Id: Makefile,v 1.3 1997/02/22 16:13:48 peter Exp $
+# $Id: Makefile,v 1.4 1997/03/13 04:21:38 davidn Exp $
PROG= stlstats
MAN8= stlstats.8
-LDADD= -lncurses
-DPADD= ${LIBNCURSES}
+DPADD= ${LIBNCURSES} ${LIBMYTINFO}
+LDADD= -lncurses -lmytinfo
.include <bsd.prog.mk>