summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChase Qi <chase.qi@linaro.org>2018-05-11 05:08:14 +0100
committerChase Qi <chase.qi@linaro.org>2018-05-11 05:08:14 +0100
commitae6d4fca1001bfd0bbf8ed4f84e803c30e2e904e (patch)
treebe8b209fb938d351b05c5c550a1ee79e6b92f69a
parentb02c865b64136f430c891769b53688c433515702 (diff)
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 <chase.qi@linaro.org>
-rwxr-xr-xautomated/linux/lapack/lapack.sh5
1 files 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.