remove eigen2 checks per patch from @fcbsd to master branch

master
Don Bright 2014-03-27 18:18:38 -05:00
parent 819c74d8ab
commit 45ef0c9a6e
1 changed files with 1 additions and 5 deletions

View File

@ -37,11 +37,7 @@ debug()
eigen_sysver()
{
debug eigen
eigpath=
eig3path=$1/include/eigen3/Eigen/src/Core/util/Macros.h
eig2path=$1/include/eigen2/Eigen/src/Core/util/Macros.h
if [ -e $eig3path ]; then eigpath=$eig3path; fi
if [ -e $eig2path ]; then eigpath=$eig2path; fi
eigpath=$1/include/eigen3/Eigen/src/Core/util/Macros.h
debug $eig2path
if [ ! $eigpath ]; then return; fi
eswrld=`grep "define *EIGEN_WORLD_VERSION *[0-9]*" $eigpath | awk '{print $3}'`