From: Siesh1oo Date: Mon, 10 Mar 2014 19:27:39 +0000 (+0100) Subject: - Makefile: include $(PWD) in PATH, since 'make test' can happen before 'make install'. X-Git-Tag: yosys-0.3.0~57^2~1^2~6^2~1^2~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=876c016904989bc54eafada1363e31f291854542;p=yosys.git - Makefile: include $(PWD) in PATH, since 'make test' can happen before 'make install'. --- diff --git a/Makefile b/Makefile index 849860a33..ce9a99bc0 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ CXXFLAGS = -Wall -Wextra -ggdb -I"$(shell pwd)" -I${DESTDIR}/include -MD -D_YOSY LDFLAGS = -L${DESTDIR}/lib LDLIBS = -lstdc++ -lreadline -lm -ldl -export PATH := ${DESTDIR}/bin:$(PATH) +export PATH := $(PWD):$(DESTDIR)/bin:$(PATH) ifeq (Darwin,$(findstring Darwin,$(shell uname))) # add macports include and library path to search directories, don't use '-rdynamic' and '-lrt':