Skip to content
Snippets Groups Projects
Commit 6b8eecff authored by mark's avatar mark
Browse files

BUG: missing check for boost, CGAL lib64/ in Allwmake

- Non-critical since makeCGAL still caught things anyhow.

- Also report the correct locations.
parent cb7d48b4
No related branches found
No related tags found
1 merge request!2Update master prior to v1612 release
...@@ -399,22 +399,21 @@ echo ...@@ -399,22 +399,21 @@ echo
echo ======================================== echo ========================================
echo Build CGAL echo Build CGAL
if [ -d "$CGAL_ARCH_PATH/include" \ if [ -d "$CGAL_ARCH_PATH/include" \
-a -r "$CGAL_ARCH_PATH/lib/libCGAL.so" ] -a -r "$CGAL_ARCH_PATH/lib$WM_COMPILER_LIB_ARCH/libCGAL.so" ]
then then
# first some information about boost # first some information about boost
if [ -d "$BOOST_ARCH_PATH/include/boost" \ for root in "$BOOST_ARCH_PATH" /usr
-a -r "$BOOST_ARCH_PATH/lib/libboost_system.so" ] do
then if [ -d "$root/include/boost" \
echo " BOOST headers in $BOOST_ARCH_PATH/include" -a -r "$root/lib$WM_COMPILER_LIB_ARCH/libboost_system.so" ]
echo " BOOST libs in $BOOST_ARCH_PATH/lib" then
elif [ -d "/usr/include/boost" \ echo " BOOST headers in $root/include"
-a -r "/usr/lib${WM_COMPILER_LIB_ARCH}/libboost_system.so" ] echo " BOOST libs in $root/lib$WM_COMPILER_LIB_ARCH"
then break
echo " BOOST headers in /usr/include" fi
echo " BOOST libs in /usr/lib${WM_COMPILER_LIB_ARCH}" done
fi
echo " CGAL headers in $CGAL_ARCH_PATH/include" echo " CGAL headers in $CGAL_ARCH_PATH/include"
echo " CGAL libs in $CGAL_ARCH_PATH/lib" echo " CGAL libs in $CGAL_ARCH_PATH/lib$WM_COMPILER_LIB_ARCH"
elif [ -n "$CGAL_ARCH_PATH" ] elif [ -n "$CGAL_ARCH_PATH" ]
then then
./makeCGAL || warnBuildIssues CGAL ./makeCGAL || warnBuildIssues CGAL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment