From ae6d4fca1001bfd0bbf8ed4f84e803c30e2e904e Mon Sep 17 00:00:00 2001 From: Chase Qi Date: Fri, 11 May 2018 05:08:14 +0100 Subject: linux/lapack: fix package installation on CentOS gfortran on CentOS 7 is provided in the gcc-gfortran package. Change-Id: Ie7c5efd427ea1a9f4148697b1c57dbfcc4e39844 Signed-off-by: Chase Qi --- automated/linux/lapack/lapack.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/automated/linux/lapack/lapack.sh b/automated/linux/lapack/lapack.sh index 8fb1b46..f7979ee 100755 --- a/automated/linux/lapack/lapack.sh +++ b/automated/linux/lapack/lapack.sh @@ -66,13 +66,12 @@ install() { case "${dist}" in debian|ubuntu) pkgs="binutils gcc make python sed tar wget gfortran" - install_deps "${pkgs}" "${SKIP_INSTALL}" ;; fedora|centos) - pkgs="binutils gcc glibc-static make python sed tar wget gfortran" - install_deps "${pkgs}" "${SKIP_INSTALL}" + pkgs="binutils gcc glibc-static make python sed tar wget gcc-gfortran" ;; esac + install_deps "${pkgs}" "${SKIP_INSTALL}" } # Test run. -- cgit v1.2.3