mirror of https://github.com/YosysHQ/yosys.git
Mac build fix, gsed -> sed
Homebrew is calling its GNU sed just 'sed' now.
This commit is contained in:
parent
93f6f68b65
commit
7948156abf
2
Makefile
2
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
|
||||
|
|
Loading…
Reference in New Issue