From: Micah Elizabeth Scott Date: Tue, 15 Dec 2015 18:22:35 +0000 (-0800) Subject: Mac build fix, gsed -> sed X-Git-Tag: yosys-0.6~50^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7948156abf75904e305e9063763b7509b2139862;p=yosys.git Mac build fix, gsed -> sed Homebrew is calling its GNU sed just 'sed' now. --- 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