Procházet zdrojové kódy

configure.ac: improve error message when mpicc not having the execute permission

Nathalie Furmento před 9 roky
rodič
revize
fa904a1dfd
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      configure.ac

+ 1 - 1
configure.ac

@@ -1810,7 +1810,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_RESULT(The mpicc compiler is not valid)
+	AC_MSG_RESULT(The mpicc compiler '$mpicc_path' does not have the execute permission)
 	use_mpi=no
 else
 	use_mpi=yes