79e75232f1
with absolute path. This makes relative paths working again for specified documents in the argument list.
15 lines
329 B
Bash
15 lines
329 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD: /tmp/pcvs/ports/editors/openoffice.org-1.1/files/Attic/openoffice-wrapper,v 1.12 2003-09-25 22:43:58 mbr Exp $
|
|
|
|
oopath=%%PREFIX%%/OpenOffice.org%%FRELEASE_NR%%/program/
|
|
program=`echo $0 | sed -e 's|.*-%%RELEASE_NR%%-||'`
|
|
|
|
case $program in
|
|
$0)
|
|
$oopath/soffice "$@"
|
|
;;
|
|
*)
|
|
$oopath/$program "$@"
|
|
;;
|
|
esac
|