From 7948156abf75904e305e9063763b7509b2139862 Mon Sep 17 00:00:00 2001 From: Micah Elizabeth Scott Date: Tue, 15 Dec 2015 10:22:35 -0800 Subject: [PATCH] Mac build fix, gsed -> sed Homebrew is calling its GNU sed just 'sed' now. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index aa3703642..3dff837fb 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ ifeq (Darwin,$(findstring Darwin,$(shell uname))) LDFLAGS += $(shell PKG_CONFIG_PATH=$$(brew list libffi | grep pkgconfig | xargs dirname) pkg-config --silence-errors --libs libffi) # use bison installed by homebrew if available BISON = $(shell (brew list bison | grep -m1 "bin/bison") || echo bison) - SED = gsed + SED = sed else LDFLAGS += -rdynamic LDLIBS += -lrt -- 2.30.2