diff options
Diffstat (limited to 'ure/source')
-rw-r--r-- | ure/source/startup.sh | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/ure/source/startup.sh b/ure/source/startup.sh index 7130d172809b..1b80e16cf3d6 100644 --- a/ure/source/startup.sh +++ b/ure/source/startup.sh @@ -39,8 +39,17 @@ epath=`dirname "$0"` if [ -x "${epath}/javaldx" ] ; then jpath=`"${epath}/javaldx" $my_envargs` if [ -n "${jpath}" ]; then - LD_LIBRARY_PATH=${jpath}${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}} - export LD_LIBRARY_PATH + sd_platform=`uname -s` + case $sd_platform in + AIX) + LIBPAT=${jpath}${LIBPATH:+:${LIBPATH}} + export LIBPATH + ;; + *) + LD_LIBRARY_PATH=${jpath}${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}} + export LD_LIBRARY_PATH + ;; + esac fi fi |