aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-11-08 09:58:47 +0100
committerClifford Wolf <clifford@clifford.at>2018-11-08 09:58:47 +0100
commit05d2e5d773cff71b668d7bb96a509ece835ebf6a (patch)
tree34e56a1db7df2d009e1e03750d33c8fa98259a11 /Makefile
parent825b4c1aa9ae5abe7484f056cc14d973bcaae378 (diff)
downloadyosys-05d2e5d773cff71b668d7bb96a509ece835ebf6a.tar.gz
yosys-05d2e5d773cff71b668d7bb96a509ece835ebf6a.tar.bz2
yosys-05d2e5d773cff71b668d7bb96a509ece835ebf6a.zip
Fix "make ystests" to use correct Yosys binary
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fd708b7de..290a3a50b 100644
--- a/Makefile
+++ b/Makefile
@@ -595,7 +595,7 @@ vloghtb: $(TARGETS) $(EXTRA_TARGETS)
ystests: $(TARGETS) $(EXTRA_TARGETS)
rm -rf tests/ystests
git clone https://github.com/YosysHQ/yosys-tests.git tests/ystests
- +PATH="$$PWD:$$PATH" cd tests/ystests && $(MAKE)
+ +$(MAKE) PATH="$$PWD:$$PATH" -C tests/ystests
@echo ""
@echo " Finished \"make ystests\"."
@echo ""