dbcf68f61e
As far as I know we have no intention to use that stuff. Do we ever have any idea what it means? But sure, if it turns out that we do want to, this commit will have to be reverted.
13 lines
396 B
Bash
Executable file
13 lines
396 B
Bash
Executable file
#!/bin/sh
|
|
if [ x${SOLARENV}x = xx ]; then
|
|
echo No environment found, please use 'setsolar'
|
|
exit 1
|
|
fi
|
|
|
|
if [ "${OS?}" = MACOSX ]; then
|
|
export DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH:+${DYLD_LIBRARY_PATH}:}${SOLARVERSION?}/${INPATH?}/lib
|
|
else
|
|
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+${LD_LIBRARY_PATH}:}${SOLARVERSION?}/${INPATH?}/lib
|
|
fi
|
|
|
|
exec $SOLARVERSION/$INPATH/bin/localize_sl "$@"
|