[jboss-cvs] JBossAS SVN: r92273 - branches/JBPAPP_5_0/main/src/bin.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Aug 12 11:15:33 EDT 2009


Author: permaine
Date: 2009-08-12 11:15:32 -0400 (Wed, 12 Aug 2009)
New Revision: 92273

Modified:
   branches/JBPAPP_5_0/main/src/bin/run.sh
Log:
JBPAPP-2439: run.sh start script do not find jbossweb native libraries on RHEL distros

Modified: branches/JBPAPP_5_0/main/src/bin/run.sh
===================================================================
--- branches/JBPAPP_5_0/main/src/bin/run.sh	2009-08-12 14:48:46 UTC (rev 92272)
+++ branches/JBPAPP_5_0/main/src/bin/run.sh	2009-08-12 15:15:32 UTC (rev 92273)
@@ -171,6 +171,10 @@
     JBOSS_NATIVE_DIR=`cd "$JBOSS_HOME/../native" && pwd`
 elif [ -d "$JBOSS_HOME/native/lib" ]; then
     JBOSS_NATIVE_DIR=`cd "$JBOSS_HOME/native" && pwd`
+elif [ -d "$JBOSS_HOME/../native/lib64" ]; then
+    JBOSS_NATIVE_DIR=`cd "$JBOSS_HOME/../native" && pwd`
+elif [ -d "$JBOSS_HOME/native/lib64" ]; then
+    JBOSS_NATIVE_DIR=`cd "$JBOSS_HOME/native" && pwd`
 fi
 if [ -d "$JBOSS_NATIVE_DIR" ]; then
     if $cygwin; then




More information about the jboss-cvs-commits mailing list