From 0c8b6dd346b97c1607c293d541babed190f33ea0 Mon Sep 17 00:00:00 2001
From: Curtis McEnroe <programble@gmail.com>
Date: Fri, 9 Feb 2018 17:26:16 -0500
Subject: Link -lncurses

Apparently the curses link doesn't exist everywhere.
---
 bin/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/Makefile b/bin/Makefile
index ffbde39a..f9c5811c 100644
--- a/bin/Makefile
+++ b/bin/Makefile
@@ -5,7 +5,7 @@ ALL_BINS = $(ANY_BINS) $(BSD_BINS) $(LIN_BINS)
 GFX = none
 
 CFLAGS += -Wall -Wextra -Wpedantic
-LDLIBS = -lcurses -ledit -lutil -lz
+LDLIBS = -ledit -lncurses -lutil -lz
 LDLIBS_cocoa = -framework Cocoa
 LDLIBS_x11 = -lX11
 
-- 
cgit 1.4.1