From 8a4eb03a0e6b456838ddf6600cdee2bf4c950962 Mon Sep 17 00:00:00 2001 From: Cyril Hrubis Date: Wed, 10 Aug 2022 22:43:53 +0200 Subject: [PATCH] Makefile: Add missing -ltinfo Which is required for never ncurses that does not link it when -lncurses is passed to the linker. Signed-off-by: Cyril Hrubis --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cafa860..7e30cfc 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ MANDIR=$(PREFIX)/share/man # gcc-4.1 needs -Wno-pointer-sign CUSTOM_CFLAGS=-Wall -ggdb -O3 SYS_CFLAGS= -LIBS += -lncurses +LIBS += -lncurses -ltinfo LD=ld AR=ar -- 2.11.4.GIT