aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorTom Verbeure <tom_verbeure@yahoo.com>2016-08-30 22:23:50 -0700
committerTom Verbeure <tom_verbeure@yahoo.com>2016-08-30 22:23:50 -0700
commit29e90e4dff906f4cb5dedad78278cd07dd950060 (patch)
tree3ca035f4475d115eb0efcb10e62840e2f7ac07ad /scripts
parent413a65e39a77d11ed7a54ccf46fd8e6e9f3baf62 (diff)
downloadpicorv32-29e90e4dff906f4cb5dedad78278cd07dd950060.tar.gz
picorv32-29e90e4dff906f4cb5dedad78278cd07dd950060.zip
Add QUARTUS_BIN prefix
Diffstat (limited to 'scripts')
-rw-r--r--scripts/quartus/tabtest.sh6
1 files changed, 3 insertions, 3 deletions
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