mirror of https://github.com/CGAL/cgal
Remove log messages when using "-n".
This commit is contained in:
parent
c6fe5e3d8b
commit
2907b46b13
|
|
@ -787,7 +787,7 @@ do
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$arg" = "-n" ]; then
|
if [ "$arg" = "-n" ]; then
|
||||||
echo "Not testsuite will be launched. Compilation only."
|
# echo "No testsuite will be launched. Installation only."
|
||||||
DO_NOT_TEST="y"
|
DO_NOT_TEST="y"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
@ -891,9 +891,11 @@ build_cgal
|
||||||
|
|
||||||
if [ "${BUILD_HOSTS}" = "localhost" ]; then
|
if [ "${BUILD_HOSTS}" = "localhost" ]; then
|
||||||
TEXT="`value_of COMPILERS_localhost`"
|
TEXT="`value_of COMPILERS_localhost`"
|
||||||
if [ -z "${TEXT}" ]; then
|
if [ -z "${DO_NOT_TEST}" ]; then
|
||||||
printf "Skipping testing phase.\n"
|
if [ -z "${TEXT}" ]; then
|
||||||
DO_NOT_TEST="y"
|
printf "Skipping testing phase (use the -n option to remove this message).\n"
|
||||||
|
DO_NOT_TEST="y"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue