diff options
author | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-10 20:27:39 +0100 |
---|---|---|
committer | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-13 11:29:03 +0100 |
commit | 4cad0462332f84b747ff4402fd95fec22fae1735 (patch) | |
tree | aef9e24398ad956ab9412856dd2b7ff4f356ba85 | |
parent | 1cd7fbb6b8da3b56273426cf2fd13bec49ec0fed (diff) | |
download | yosys-4cad0462332f84b747ff4402fd95fec22fae1735.tar.gz yosys-4cad0462332f84b747ff4402fd95fec22fae1735.tar.bz2 yosys-4cad0462332f84b747ff4402fd95fec22fae1735.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
@@ -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': |