Просмотр исходного кода

configure.ac: when mpicc is unavailable, do not fail but just disable mpi

Nathalie Furmento лет назад: 15
Родитель
Сommit
d0efbb8b5f
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      configure.ac

+ 1 - 1
configure.ac

@@ -695,7 +695,7 @@ AC_ARG_WITH(mpicc, [AS_HELP_STRING([--with-mpicc[=<path to mpicc>]],
 # We test if the MPICC compiler exists
 if test ! -x $mpicc_path; then
 	#MPICC does not exists or is not executable
-	AC_MSG_ERROR(The mpicc compiler is not valid)
+	AC_MSG_RESULT(The mpicc compiler is not valid)
 	use_mpi=no
 else
 	use_mpi=yes