configure.ac:

- do not ignore CC an CXX
This commit is contained in:
2016-07-28 12:18:25 +02:00
parent 075b2f39da
commit 04fe7fdd9e
+6 -2
View File
@@ -112,9 +112,13 @@ AC_ARG_WITH(
[VTK_PREFIX=$withval], [])
# Determine a C/C++ compiler to use.
CC=''
CXX=''
if test "x$ENABLE_PARALLEL" = "xyes"; then
if test "x$MPICC" != "x"; then
CC=$MPICC
fi
if test "x$MPICXX" != "x"; then
CXX=$MPICXX
fi
c_compilers="mpicc cc"
cxx_compilers="mpic++ CC"
else