diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-06-22 13:29:42 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-06-22 13:29:42 (GMT) |
commit | b715e580f7c0e541cc07c0d0d13da8df64d88f18 (patch) | |
tree | 86db281d5fcf684d5dd656c2095c9fe4b0e84f5d /scripts/check-dependencies.sh | |
parent | ec867349fff100ac783cb91a343b8c2584e83b61 (diff) |
check OPENSCAD_LIBRARIES first
Diffstat (limited to 'scripts/check-dependencies.sh')
-rwxr-xr-x | scripts/check-dependencies.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-dependencies.sh b/scripts/check-dependencies.sh index 5fddb13..c4f2893 100755 --- a/scripts/check-dependencies.sh +++ b/scripts/check-dependencies.sh @@ -432,7 +432,7 @@ find_installed_version() # try to find/parse headers and/or binary output # break on the first match. (change the order to change precedence) if [ ! $fsv_tmp ]; then - for syspath in "/usr/local" "/opt/local" "/usr/pkg" "/usr" $OPENSCAD_LIBRARIES; do + for syspath in $OPENSCAD_LIBRARIES "/usr/local" "/opt/local" "/usr/pkg" "/usr"; do if [ -e $syspath ]; then debug $depname"_sysver" $syspath eval $depname"_sysver" $syspath |