diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-06-09 04:49:54 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-06-09 04:49:54 (GMT) |
commit | 25cf3ad26b3cabc56fcdfbcc38a2f767a59ecfb6 (patch) | |
tree | fa42f439f54e0751c185731acddba06ade75863a /scripts | |
parent | 49af42cfd0cababceac2dba04ac55bb0e10c2775 (diff) | |
parent | 544d743a833dccb8c74015902785d45105a3655b (diff) |
Merge branch 'master' of github.com:openscad/openscad
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" |