From: vsr Date: Fri, 25 Feb 2005 08:15:41 +0000 (+0000) Subject: Create symbolic links in the ${KERNEL_ROOT_DIR}/lib/salome (for Red Hat 9 only): X-Git-Tag: SALOME_V_2_2_1~7 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=a5c3695f9bee99a732f34867b36cba824c17257c;p=tools%2Finstall.git Create symbolic links in the ${KERNEL_ROOT_DIR}/lib/salome (for Red Hat 9 only): ln -s /lib/libcrypto.so.0.9.7a libcrypto.so.2 ln -s /lib/libssl.so.0.9.7a libssl.so.2 --- diff --git a/config_files/KERNEL_BIN_2.2.0.sh b/config_files/KERNEL_BIN_2.2.0.sh index b6be9c5..6f0545c 100755 --- a/config_files/KERNEL_BIN_2.2.0.sh +++ b/config_files/KERNEL_BIN_2.2.0.sh @@ -61,6 +61,14 @@ source ${INSTALL_WORK}/$SHRC check_jb tar xfz ${SOURCE_DIR}/KERNELbinariesV2.2.0.tar.gz -C ${INSTALL_ROOT} +# The next two symbolic links are created only for Red Hat 9 +if [ -f /lib/libcrypto.so.0.9.7a ]; then + ln -sf /lib/libcrypto.so.0.9.7a ${PRODUCT_DIR}/lib/salome/libcrypto.so.2 +fi +if [ -f /lib/libssl.so.0.9.7a ]; then + ln -sf /lib/libssl.so.0.9.7a ${PRODUCT_DIR}/lib/salome/libssl.so.2 +fi + print_env }