From 29e90e4dff906f4cb5dedad78278cd07dd950060 Mon Sep 17 00:00:00 2001 From: Tom Verbeure Date: Tue, 30 Aug 2016 22:23:50 -0700 Subject: Add QUARTUS_BIN prefix --- scripts/quartus/tabtest.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/quartus/tabtest.sh b/scripts/quartus/tabtest.sh index 2fee520..d731f76 100644 --- a/scripts/quartus/tabtest.sh +++ b/scripts/quartus/tabtest.sh @@ -38,13 +38,13 @@ set_global_assignment -name SDC_FILE test_${1}.sdc echo "Running tab_${ip}_${dev}_${grade}/test_${1}.." - if ! quartus_map test_${1}; then + if ! $QUARTUS_BIN/quartus_map test_${1}; then exit 1 fi - if ! quartus_fit --read_settings_files=off --write_settings_files=off test_${1} -c test_${1}; then + if ! $QUARTUS_BIN/quartus_fit --read_settings_files=off --write_settings_files=off test_${1} -c test_${1}; then exit 1 fi - if ! quartus_sta test_${1} -c test_${1}; then + if ! $QUARTUS_BIN/quartus_sta test_${1} -c test_${1}; then exit 1 fi -- cgit