diff options
author | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-10 20:27:39 +0100 |
---|---|---|
committer | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-11 19:43:59 +0100 |
commit | c17ee0f6dd5bb6e53ff0bf6da4650972323fc82d (patch) | |
tree | db32164caedab176a64c66a872b5cbc53daf1042 | |
parent | 4d56fbc150e5dcdefb1709d82aee91c9bb0d1227 (diff) | |
download | yosys-c17ee0f6dd5bb6e53ff0bf6da4650972323fc82d.tar.gz yosys-c17ee0f6dd5bb6e53ff0bf6da4650972323fc82d.tar.bz2 yosys-c17ee0f6dd5bb6e53ff0bf6da4650972323fc82d.zip |
- Makefile: include $(PWD) in PATH, since 'make test' can happen before 'make install'.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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': |