mirror of
https://github.com/opnsense/src.git
synced 2026-04-20 21:59:20 -04:00
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.
This commit is contained in:
parent
76ef01374e
commit
13b6695c0c
1 changed files with 3 additions and 3 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue