From: iceman1001 Date: Thu, 18 Feb 2016 22:01:12 +0000 (+0100) Subject: FIX: For ld (linker) there is no "-=", so lets try re-assign ldlibs instead X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/25606bd7246c4192b6c4664ef813d33be4f23f92?hp=28d47dc9b4bb437596594a62793bace13bbff172 FIX: For ld (linker) there is no "-=", so lets try re-assign ldlibs instead --- diff --git a/client/Makefile b/client/Makefile index c918fcb2..afb06c87 100644 --- a/client/Makefile +++ b/client/Makefile @@ -41,7 +41,7 @@ ifneq (,$(findstring MINGW,$(platform))) endif else ifeq ($(platform),Darwin) - LDLIBS -= -L/usr/local/lib + LDLIBS = -L/opt/local/lib -lreadline -lpthread -lm CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O3 QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null) MOC = $(shell pkg-config --variable=moc_location QtCore)