Kaydet (Commit) 810a08a8 authored tarafından Andras Timar's avatar Andras Timar

localize.pl is not necessary

üst a6f311ac
......@@ -36,7 +36,6 @@ mkdir: %_DEST%\bin\help\com\sun\star\help
..\%__SRC%\bin\HelpLinker.exe %_DEST%\bin\HelpLinker.exe
..\%__SRC%\bin\HelpLinker* %_DEST%\bin
..\scripts\localize.pl %_DEST%\bin\localize.pl
..\scripts\localize %_DEST%\bin\localize
..\scripts\fast_merge.pl %_DEST%\bin\fast_merge.pl
..\scripts\keyidGen.pl %_DEST%\bin\keyidGen.pl
......
This diff is collapsed.
......@@ -4,12 +4,13 @@ if [ x${SOLARENV}x = xx ]; then
exit 1
fi
# localize.pl calls localize_sl in solver bin directory which depends on dynamic
# libraries in solver lib directory but has no correct RPATH (or equivalent):
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 perl -w $SOLARVERSION/$INPATH/bin/localize.pl "$@"
pushd $(pwd)
cd ${SRC_ROOT}
exec $SOLARVERSION/$INPATH/bin/localize_sl "$@"
popd
#!/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 "$@"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment