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 /security/kc24/Makefile | |
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 'security/kc24/Makefile')
-rw-r--r-- | security/kc24/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/kc24/Makefile b/security/kc24/Makefile index 8aa5679207c2..547c33c75669 100644 --- a/security/kc24/Makefile +++ b/security/kc24/Makefile @@ -41,6 +41,6 @@ PLIST_FILES= bin/kc man/man1/kc.1.gz MAKE_ENV+= BUNDLED_BCRYPT=y post-patch: - @${REINPLACE_CMD} -e 's|-lncursesw|-l${NCURSES_IMPL}|' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|-lncursesw|${NCURSESLIBS}|' ${WRKSRC}/Makefile .include <bsd.port.mk> |