diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2021-09-23 18:18:56 +0200 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2021-09-23 18:22:54 +0200 |
commit | 266130ce71ef2f1cd944a70789bf003da3254c29 (patch) | |
tree | 9d1d11a998d94ba964697fc8d56f65eed716d239 /www/newsboat | |
parent | 3556bb222640f4cf6dd22a59542fafdf5ffbd934 (diff) | |
download | freebsd-ports-266130ce71ef2f1cd944a70789bf003da3254c29.zip |
ncurses: fix build with futur base and ports ncurses
in preparation for the split in base of libtinfo and libncurses, clearly
specify when the packages should link against.
Note this also fixes the build with ports ncurses
Diffstat (limited to 'www/newsboat')
-rw-r--r-- | www/newsboat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/newsboat/Makefile b/www/newsboat/Makefile index ee6d62a0badb..1a66c3c40400 100644 --- a/www/newsboat/Makefile +++ b/www/newsboat/Makefile @@ -133,7 +133,7 @@ post-patch: @${REINPLACE_CMD} -e 's,fail "ncursesw",true,; s,fail "libcrypto",true,' \ -e 's,fail "libssl",true,' \ ${WRKSRC}/config.sh - @${REINPLACE_CMD} -e 's|-liconv|${ICONV_LIB} -lcrypto -l${NCURSES_IMPL}|;s|-Werror||' \ + @${REINPLACE_CMD} -e 's|-liconv|${ICONV_LIB} -lcrypto ${NCURSESLIBS}|;s|-Werror||' \ ${WRKSRC}/Makefile post-install: |