From 2367db32533c6bb81268e580e155d8ffd37f7ec1 Mon Sep 17 00:00:00 2001 From: don bright Date: Sun, 23 Dec 2012 15:14:46 -0600 Subject: netbsd - ask user to verify X Sets are installed diff --git a/scripts/check-dependencies.sh b/scripts/check-dependencies.sh index dea2e27..f3ef545 100755 --- a/scripts/check-dependencies.sh +++ b/scripts/check-dependencies.sh @@ -614,7 +614,7 @@ check_old_local() echo "Warning: you have a copy of "$i" under /usr/local/include" warnon=1 fi - if [ -e /usr/local/lib/$i ]; then + if [ -e /usr/local/lib/$i.so ]; then echo "Warning: you have a copy of "$i" under /usr/local/lib" warnon=1 fi @@ -626,6 +626,13 @@ check_old_local() } +check_misc() +{ + if [ "`uname -a|grep -i netbsd`" ]; then + echo "NetBSD: Please manually verify the X Sets have been installed" + fi +} + checkargs() { @@ -654,6 +661,7 @@ main() pretty_print $dep $dep_minver $dep_sysver $dep_compare done check_old_local + check_misc } checkargs $* -- cgit v0.10.1