diff options
author | jlam <jlam@pkgsrc.org> | 2001-06-12 20:33:00 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-06-12 20:33:00 +0000 |
commit | 328a35f96fe7ec11093e3847c0943eb3a41f2b51 (patch) | |
tree | 154e7feac1d9bd8853bbdc9b7ffa45c13b83f32f /net/ntp4 | |
parent | 8848ee6991e29c3c0d97e1c89906ee2b34645484 (diff) | |
download | pkgsrc-328a35f96fe7ec11093e3847c0943eb3a41f2b51.tar.gz |
LIBS is automatically added to CONFIGURE_ENV by bsd.pkg.mk if
GNU_CONFIGURE is defined, so simply set LIBS to the appropriate value.
Diffstat (limited to 'net/ntp4')
-rw-r--r-- | net/ntp4/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ntp4/Makefile b/net/ntp4/Makefile index 6df063e3a72..07110e6398e 100644 --- a/net/ntp4/Makefile +++ b/net/ntp4/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2001/02/17 18:19:19 wiz Exp $ +# $NetBSD: Makefile,v 1.16 2001/06/12 20:33:06 jlam Exp $ # DISTNAME= ntp-4.0.99k @@ -14,7 +14,7 @@ DEPENDS+= readline-4.*:../../devel/readline GNU_CONFIGURE= YES -CONFIGURE_ENV+= "LIBS=-ltermcap" # for ntpdc +LIBS= -ltermcap # for ntpdc DOCDIR= ${PREFIX}/share/doc EXAMPLESDIR= ${PREFIX}/share/examples |