- Makefile: include $(PWD) in PATH, since 'make test' can happen before 'make install'.

This commit is contained in:
Siesh1oo 2014-03-10 20:27:39 +01:00
parent 1cd7fbb6b8
commit 4cad046233
1 changed files with 1 additions and 1 deletions

View File

@ -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':