diff options
-rwxr-xr-x | scripts/check-dependencies.sh | 10 |
1 files changed, 9 insertions, 1 deletions
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 $* |