mirror of https://github.com/YosysHQ/yosys.git
Use $(OS) in makefile to check for Darwin
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
bab39eacce
commit
ae33026799
2
Makefile
2
Makefile
|
@ -67,7 +67,7 @@ SED ?= sed
|
||||||
BISON ?= bison
|
BISON ?= bison
|
||||||
STRIP ?= strip
|
STRIP ?= strip
|
||||||
|
|
||||||
ifeq (Darwin,$(findstring Darwin,$(shell uname)))
|
ifeq ($(OS), Darwin)
|
||||||
PLUGIN_LDFLAGS += -undefined dynamic_lookup
|
PLUGIN_LDFLAGS += -undefined dynamic_lookup
|
||||||
|
|
||||||
# homebrew search paths
|
# homebrew search paths
|
||||||
|
|
Loading…
Reference in New Issue