aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSiesh1oo <siesh1oo@siesh1oo.no>2014-03-10 20:27:39 +0100
committerSiesh1oo <siesh1oo@siesh1oo.no>2014-03-13 11:29:15 +0100
commit95e309b94d759c34173ef87f730814bbb73ebb9b (patch)
tree9a2cd7ef5d580921d1c83f227dc5b25ce059dd16
parent1d0abb3ad2a85188eef6201e0a32acbcec1e78b3 (diff)
downloadyosys-95e309b94d759c34173ef87f730814bbb73ebb9b.tar.gz
yosys-95e309b94d759c34173ef87f730814bbb73ebb9b.tar.bz2
yosys-95e309b94d759c34173ef87f730814bbb73ebb9b.zip
- Makefile: include $(PWD) in PATH, since 'make test' can happen before 'make install'.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 39b324b4d..9460e3413 100644
--- a/Makefile
+++ b/Makefile
@@ -26,7 +26,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':