diff options
author | Micah Elizabeth Scott <micah@misc.name> | 2015-12-15 10:22:35 -0800 |
---|---|---|
committer | Micah Elizabeth Scott <micah@misc.name> | 2015-12-15 10:22:35 -0800 |
commit | 7948156abf75904e305e9063763b7509b2139862 (patch) | |
tree | ae7451067a1671077ac6c467ac4fd52e464cb771 /Makefile | |
parent | 93f6f68b6556da1816b0b795ff8500cd27806c11 (diff) | |
download | yosys-7948156abf75904e305e9063763b7509b2139862.tar.gz yosys-7948156abf75904e305e9063763b7509b2139862.tar.bz2 yosys-7948156abf75904e305e9063763b7509b2139862.zip |
Mac build fix, gsed -> sed
Homebrew is calling its GNU sed just 'sed' now.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |