From a3759d77cf9277663d97250ec115b4589fab8402 Mon Sep 17 00:00:00 2001 From: magnum Date: Wed, 28 Feb 2018 16:42:04 +0100 Subject: [PATCH] Fix a problem with 'make install' on macOS if user has a GNU sed before the native one in PATH (we would end up giving incompatible options). Also omit the '-s' in LFLAGS for macOS, the linker just warns about that option being obsolete and ignored. --- src/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Makefile b/src/Makefile index a72c31932..4310280f2 100644 --- a/src/Makefile +++ b/src/Makefile @@ -54,6 +54,7 @@ SED_IN_PLACE := -i ifeq ($(UNAME),Darwin) CC := clang # the sed -i option of macOS requires a parameter for the backup file (we just use "") +SED := /usr/bin/sed SED_IN_PLACE := -i "" PROD_VERS := $(shell sw_vers -productVersion | cut -d. -f2) endif @@ -187,7 +188,9 @@ LFLAGS := $(LDFLAGS) ifeq ($(DEBUG),0) CFLAGS += -O2 +ifneq ($(UNAME),Darwin) LFLAGS += -s +endif else ifeq ($(DEBUG),1) CFLAGS += -DDEBUG -Og -ggdb