From 145980b9f938ace40afb0030988d174ffdd11d8a Mon Sep 17 00:00:00 2001 From: "C. Guy Yarvin" Date: Fri, 14 Jul 2017 14:53:19 -0700 Subject: [PATCH] Remove superfluous -lz from Linux build. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b38b3ed94..48a1dc5d3 100644 --- a/Makefile +++ b/Makefile @@ -75,7 +75,7 @@ ifeq ($(OS),osx) OSLIBS=-framework CoreServices -framework CoreFoundation endif ifeq ($(OS),linux) - OSLIBS=-lpthread -lrt -lcurses -lz + OSLIBS=-lpthread -lrt -lcurses DEFINES=-D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE endif ifeq ($(OS),bsd)