]> SALOME platform Git repositories - tools/sat_salome.git/commitdiff
Salome HOME
ensure .so files are in chmod u+x - aimed to resolve an issue in universal binary...
authorNabil Ghodbane <nabil.ghodbane@cea.fr>
Fri, 3 Feb 2023 09:46:55 +0000 (10:46 +0100)
committerNabil Ghodbane <nabil.ghodbane@cea.fr>
Fri, 3 Feb 2023 09:46:55 +0000 (10:46 +0100)
products/compil_scripts/PyQt-5.15.sh
products/compil_scripts/omniORB.sh
products/compil_scripts/omniORBpy.sh
products/compil_scripts/tbb-2019_U8.sh
products/compil_scripts/tbb.sh

index a85c630947e21a7813c9c8dce923c8cfee832370..8b8156f22361572415de5e81c24ed9e555ec14f1 100755 (executable)
@@ -69,6 +69,9 @@ else
     exit 6
 fi
 
+cd $PRODUCT_INSTALL/lib
+find . -name "*.so*" |xargs chmod u+rwx 
+
 echo
 echo "########## END"
 
index 632712f5ec28360c27becc9d7543736735e2ba09..8f0c57e81158b5fa70e0208ed7bb6f34291962d6 100755 (executable)
@@ -59,6 +59,9 @@ if version_ge $VERSION "4.1" ; then
     chmod a+x omniidlrun.py
 fi
 
+cd $PRODUCT_INSTALL/lib
+find . -name "*.so*" |xargs chmod u+rwx 
+
 echo
 echo "########## END"
 
index e1c3f068ac6e607dd0dcf8b0e18de36b365adebf..2b3c4c6f453f4a961f2c39b21c55a27295414e5a 100755 (executable)
@@ -34,6 +34,9 @@ fi
 mkdir -p $PRODUCT_INSTALL
 echo "omniORBpy is installed into omni dir ${OMNIORB_ROOT_DIR}" > $PRODUCT_INSTALL/README
 
+# fix 
+cd $OMNIORB_ROOT_DIR/lib
+find . -name "*.so*" |xargs chmod u+rwx 
+
 echo
 echo "########## END"
-
index a6f0214da5e31f50e20cc4ff5466ac8d2c58fbdc..c79f467efadffd33240fcb3ea0897d439778e6ad 100755 (executable)
@@ -16,5 +16,9 @@ then
     echo "ERROR on make"
     exit 1
 fi
+
+cd $PRODUCT_INSTALL/lib
+find . -name "*.so*" |xargs chmod u+rwx 
+
 echo
 echo "########## END"
index 5f294050a3808fa34420d6fa53100dda518163f3..7f039159e65877cd7b7c480a6610a3f7af049d92 100755 (executable)
@@ -25,5 +25,8 @@ mkdir -p $PRODUCT_INSTALL
 cp -r $BUILD_DIR/include $PRODUCT_INSTALL/include
 cp -r $BUILD_DIR/build/linux*_release $PRODUCT_INSTALL/lib
 
+cd $PRODUCT_INSTALL/lib
+find . -name "*.so*" |xargs chmod u+rwx 
+
 echo
 echo "########## END"