Salome HOME
openMPI fix
authorNabil Ghodbane <nabil.ghodbane@cea.fr>
Fri, 10 Mar 2023 12:00:58 +0000 (13:00 +0100)
committerNabil Ghodbane <nabil.ghodbane@cea.fr>
Fri, 10 Mar 2023 12:00:58 +0000 (13:00 +0100)
products/compil_scripts/openmpi.sh

index 631b57c009d6ec2ce88cf9ac3390305851a17cb4..94737809a69f364e7ee2e53f9f4e56a4b5939044 100755 (executable)
@@ -8,15 +8,15 @@ rm -rf $BUILD_DIR
 mkdir $BUILD_DIR
 cd $BUILD_DIR
 
-cp -r $SOURCE_DIR/* .
+# -p option ensures that the date remain the same.
+cp -p -r $SOURCE_DIR/* .
 
 if [ -f autogen.pl ] && [ ! -f configure ]; then
     echo
-    echo "*** autoreconf -i"
+    echo "*** autogen.pl"
     chmod +x autogen.pl
     ./autogen.pl
-    if [ $? -ne 0 ]
-    then
+    if [ $? -ne 0 ]; then
         echo "ERROR on autogen.pl"
         exit 1
     fi