aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSiesh1oo <siesh1oo@siesh1oo.no>2014-03-10 20:27:39 +0100
committerSiesh1oo <siesh1oo@siesh1oo.no>2014-03-11 19:43:59 +0100
commitc17ee0f6dd5bb6e53ff0bf6da4650972323fc82d (patch)
treedb32164caedab176a64c66a872b5cbc53daf1042
parent4d56fbc150e5dcdefb1709d82aee91c9bb0d1227 (diff)
downloadyosys-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--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 75a8f42bb..9f888c861 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':