check for stale pkgconfig under /usr/local/lib

felipesanches-svg
don bright 2013-03-05 17:57:22 -06:00
parent 42f21c3a08
commit 51be86ad29
1 changed files with 8 additions and 2 deletions

View File

@ -451,17 +451,23 @@ check_old_local()
warnon=
if [ "`uname | grep -i linux`" ]; then
header_list="opencsg.h CGAL boost GL/glew.h gmp.h mpfr.h eigen2 eigen3"
liblist="libboost_system libboost_system-mt libopencsg libCGAL libglew"
for i in $header_list $liblist; do
for i in $header_list; do
if [ -e /usr/local/include/$i ]; then
echo "Warning: you have a copy of "$i" under /usr/local/include"
warnon=1
fi
done
liblist="libboost_system libboost_system-mt libopencsg libCGAL libglew"
for i in $liblist; do
if [ -e /usr/local/lib/$i.so ]; then
echo "Warning: you have a copy of "$i" under /usr/local/lib"
warnon=1
fi
done
if [ -e /usr/local/lib/pkgconfig ]; then
echo "Warning: you have pkgconfig under /usr/local/lib"
warnon=1
fi
fi
if [ $warnon ]; then
echo "Please verify these local copies don't conflict with the system"