2008/02/12 12:45:17 sb 1.4.64.1: #i86041# do not add Mozilla library directory to LD_LIBRARY_PATH in soffice start script
14 lines
297 B
Bash
Executable File
14 lines
297 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -x /usr/bin/mktemp ]
|
|
then
|
|
TMPFILE=`mktemp -t open-url.XXXXXX`
|
|
else
|
|
DTTMPDIR=`xrdb -query | grep DtTmpDir`
|
|
TMPFILE=${DTTMPDIR:-$HOME/.dt/tmp}/open-url.$$
|
|
fi
|
|
|
|
if [ -z "$TMPFILE" ]; then exit 1; fi
|
|
( echo "$1" > "$TMPFILE"; dtaction Open "$TMPFILE"; rm -f "$TMPFILE" ) &
|
|
exit 0
|