Work on installation script.

Change gfortran min version to 6.0 to see if this works in Jenkins
This commit is contained in:
Sylvain Tricot 2019-11-29 15:27:14 +01:00
parent 56c1031e36
commit 9296509f7b
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ check_dependencies () {
log_message "Ok\n"
# we need gfortran
gcc_ver_min=7
gcc_ver_min=6
log_message "Checking if gfortran >= $gcc_ver_min is installed..."
command -V gfortran || return 1
gcc_ver=$(gcc -dumpversion)