JBoss Native SVN: r3036 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2013-01-16 10:21:46 -0500 (Wed, 16 Jan 2013)
New Revision: 3036
Modified:
trunk/build/unix/build.sh
Log:
copy the libraries.
Modified: trunk/build/unix/build.sh
===================================================================
--- trunk/build/unix/build.sh 2013-01-16 15:13:23 UTC (rev 3035)
+++ trunk/build/unix/build.sh 2013-01-16 15:21:46 UTC (rev 3036)
@@ -782,21 +782,11 @@
cat engines/lib4758cca.so > /dev/null
if [ $? -eq 0 ]; then
make install_sw SHLIB_EXT=.so || exit 1
+ cp -p libssl.* ${ssl_common_dir}/lib
+ cp -p libcrypto.* ${ssl_common_dir}/lib
else
make install_sw || exit 1
fi
- # openssl-0.9.8b is broken (work-around it).
- if $ssl_static; then
- :
- else
- cat ${ssl_common_dir}/lib/libssl.${so_extension} > /dev/null
- if [ $? -ne 0 ]; then
- rm -f ${ssl_common_dir}/lib/libssl.${so_extension}
- cp -p libssl.${so_extension} ${ssl_common_dir}/lib
- rm -f ${ssl_common_dir}/lib/libcrypto.${so_extension}
- cp -p libcrypto.${so_extension} ${ssl_common_dir}/lib
- fi
- fi
;;
*)
make install_sw || exit 1