diff options
author | Emily <vcs@emily.moe> | 2019-09-04 19:01:00 +0100 |
---|---|---|
committer | Emily <vcs@emily.moe> | 2019-09-04 19:01:00 +0100 |
commit | a7ea6a6fcf964f3c368b634e1fcc2c29d3bfdce4 (patch) | |
tree | 7f99704cecdae41c3af8283cd27c7f0545a8d410 /Makefile | |
parent | 69a5dea89ef8cbf8bcc1b761518738623e028e38 (diff) | |
download | yosys-a7ea6a6fcf964f3c368b634e1fcc2c29d3bfdce4.tar.gz yosys-a7ea6a6fcf964f3c368b634e1fcc2c29d3bfdce4.tar.bz2 yosys-a7ea6a6fcf964f3c368b634e1fcc2c29d3bfdce4.zip |
Replace `which` with `command -v` in Makefile too
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -88,7 +88,7 @@ ifeq ($(OS), Darwin) PLUGIN_LDFLAGS += -undefined dynamic_lookup # homebrew search paths -ifneq ($(shell which brew),) +ifneq ($(shell command -v brew),) BREW_PREFIX := $(shell brew --prefix)/opt $(info $$BREW_PREFIX is [${BREW_PREFIX}]) ifeq ($(ENABLE_PYOSYS),1) @@ -102,8 +102,8 @@ PKG_CONFIG_PATH := $(BREW_PREFIX)/tcl-tk/lib/pkgconfig:$(PKG_CONFIG_PATH) export PATH := $(BREW_PREFIX)/bison/bin:$(BREW_PREFIX)/gettext/bin:$(BREW_PREFIX)/flex/bin:$(PATH) # macports search paths -else ifneq ($(shell which port),) -PORT_PREFIX := $(patsubst %/bin/port,%,$(shell which port)) +else ifneq ($(shell command -v port),) +PORT_PREFIX := $(patsubst %/bin/port,%,$(shell command -v port)) CXXFLAGS += -I$(PORT_PREFIX)/include LDFLAGS += -L$(PORT_PREFIX)/lib PKG_CONFIG_PATH := $(PORT_PREFIX)/lib/pkgconfig:$(PKG_CONFIG_PATH) |