diff options
author | bde <bde@FreeBSD.org> | 1997-12-17 10:06:51 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-12-17 10:06:51 +0000 |
commit | 7163c76d8f0c74a793b518b494b3acebc12b6440 (patch) | |
tree | 33b545ced19a2d3ebe6de446751dd7640736ce8c /usr.sbin/stallion | |
parent | b26eaaec52b24ae26bf30358f68e8f0b3b31ce7c (diff) | |
download | FreeBSD-src-7163c76d8f0c74a793b518b494b3acebc12b6440.zip FreeBSD-src-7163c76d8f0c74a793b518b494b3acebc12b6440.tar.gz |
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.
Diffstat (limited to 'usr.sbin/stallion')
-rw-r--r-- | usr.sbin/stallion/stlstats/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/stallion/stlstats/Makefile b/usr.sbin/stallion/stlstats/Makefile index 8f1b8e7..0789c07 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> |