From 28be691dd02072e0ea1d9124b0fdef0e2cbcb1e7 Mon Sep 17 00:00:00 2001 From: Quentin Cozette Date: Mon, 12 Oct 2020 18:27:57 +0200 Subject: [PATCH] Fix issue in installation of the petsc product on CentOS 6 --- products/compil_scripts/petsc.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/products/compil_scripts/petsc.sh b/products/compil_scripts/petsc.sh index 5eb0db1..9d691d2 100755 --- a/products/compil_scripts/petsc.sh +++ b/products/compil_scripts/petsc.sh @@ -29,7 +29,8 @@ then exit 2 fi -MAKE_OPTIONS=$MAKE_OPTIONS" PETSC_ARCH=arch-linux-c-debug" +# CentOS 6 automatically set PETSC_ARCH to arch-linux2-c-debug : remove arch specification +# MAKE_OPTIONS=$MAKE_OPTIONS" PETSC_ARCH=arch-linux-c-debug" echo echo "*** make install" -- 2.39.2