diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-06-09 08:47:00 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-06-09 08:47:00 (GMT) |
commit | 544d743a833dccb8c74015902785d45105a3655b (patch) | |
tree | 94c90a8d000728f1cae1a68147748eeef263c4b2 /scripts | |
parent | d27ab64d454c18ebd054c657d0bec9514a82bbd5 (diff) |
make sure OPENSCAD_LIBRARIES is searched
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/check-dependencies.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/check-dependencies.sh b/scripts/check-dependencies.sh index d486b4e..5fddb13 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 "/usr/local" "/opt/local" "/usr/pkg" "/usr" $OPENSCAD_LIBRARIES; do if [ -e $syspath ]; then debug $depname"_sysver" $syspath eval $depname"_sysver" $syspath @@ -523,6 +523,7 @@ main() deps="qt4 cgal gmp mpfr boost opencsg glew eigen gcc bison flex make" #deps="$deps curl git" # not technically necessary for build #deps="$deps python cmake imagemagick" # only needed for tests + #deps="cgal" pretty_print title for depname in $deps; do debug "processing $dep" |