From 1560547a0d154189ba11be46b65e86faadb074c1 Mon Sep 17 00:00:00 2001 From: Jasper Lievisse Adriaanse Date: Mon, 1 Aug 2011 11:16:44 +0200 Subject: [PATCH] Remove explicit linking with libelf for OpenBSD. This isn't needed anymore since commit eee0bc. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 259c461..3ea6a64 100644 --- a/Makefile +++ b/Makefile @@ -35,8 +35,8 @@ ifeq ($(UNAME),Darwin) # Mac OS X/MacPorts stuff PORTS_LDFLAGS = -L/opt/local/lib else ifeq ($(UNAME),OpenBSD) # OpenBSD Ports stuff - PORTS_CFLAGS = `pkg-config --cflags libelf libusb` - PORTS_LDFLAGS = `pkg-config --libs libelf libusb` -ltermcap + PORTS_CFLAGS = `pkg-config --cflags libusb` + PORTS_LDFLAGS = `pkg-config --libs libusb` -ltermcap else PORTS_CFLAGS = PORTS_LDFLAGS =