diff options
author | obache <obache@pkgsrc.org> | 2014-02-14 05:54:51 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-02-14 05:54:51 +0000 |
commit | f44b2c2127ad025bca9a0a68b18cf24ab1038982 (patch) | |
tree | b4d0ab8da2e957fec58dba6a2149216d5f27436b /net | |
parent | 8713290064c4ce0d9b05eaddbba607c85a2c8e84 (diff) | |
download | pkgsrc-f44b2c2127ad025bca9a0a68b18cf24ab1038982.tar.gz |
Fixes detection of builtin editline after automatic conversion from
devel/readline/buillink3.mk to mk/readline.buildlink.mk.
Resolve "No usable termcap library found on the system." error without
builtin termcap.
Diffstat (limited to 'net')
-rw-r--r-- | net/tnftp/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/tnftp/Makefile b/net/tnftp/Makefile index e45b6f3ecd5..3a546ec61ee 100644 --- a/net/tnftp/Makefile +++ b/net/tnftp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2013/09/12 11:18:40 jperkin Exp $ +# $NetBSD: Makefile,v 1.34 2014/02/14 05:54:51 obache Exp $ DISTNAME= tnftp-20070806 SVR4_PKGNAME= tnftp @@ -36,11 +36,11 @@ do-extract: # system. If we use the system editline library, then use the built-in # termcap library. # -CHECK_BUILTIN.readline:= yes -.include "../../mk/readline.builtin.mk" -CHECK_BUILTIN.readline:= no +CHECK_BUILTIN.editline:= yes +.include "../../devel/editline/builtin.mk" +CHECK_BUILTIN.editline:= no -.if !empty(BUILTIN_LIB_FOUND.edit:M[yY][eE][sS]) +.if !empty(USE_BUILTIN.editline:M[yY][eE][sS]) USE_BUILTIN.termcap?= yes .endif |