This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 234311
Collapse All | Expand All

(-)a/o.n.bootstrap/launcher/unix/nbexec (-2 / +11 lines)
Lines 191-198 Link Here
191
fi
191
fi
192
192
193
# Make sure native code libraries of jdk7 are found
193
# Make sure native code libraries of jdk7 are found
194
LD_LIBRARY_PATH=${jdkhome}/jre/lib/amd64:${jdkhome}/jre/lib/i386:${LD_LIBRARY_PATH}
194
# setting of the LD_LIBRARY_PATH is unnecessary on JDK8, and should be removed when only JDK8 is supported:
195
export LD_LIBRARY_PATH
195
case "`uname`" in
196
    SunOS*)
197
        LD_LIBRARY_PATH=${jdkhome}/jre/lib/amd64/client:${jdkhome}/jre/lib/amd64/server:${jdkhome}/jre/lib/i386/client:${jdkhome}/jre/lib/i386/server:${LD_LIBRARY_PATH}
198
        export LD_LIBRARY_PATH
199
        ;;
200
    *)
201
        LD_LIBRARY_PATH=${jdkhome}/jre/lib/amd64:${jdkhome}/jre/lib/i386:${LD_LIBRARY_PATH}
202
        export LD_LIBRARY_PATH
203
        ;;
204
esac
196
205
197
# fixes 225762: Can't open project from a folder with UTF-8 letters on Mac OS X
206
# fixes 225762: Can't open project from a folder with UTF-8 letters on Mac OS X
198
if [ `uname` = "Darwin" ] ; then
207
if [ `uname` = "Darwin" ] ; then

Return to bug 234311