diff options
Diffstat (limited to 'editors/openoffice.org-1.0/files/openoffice-wrapper')
-rw-r--r-- | editors/openoffice.org-1.0/files/openoffice-wrapper | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/editors/openoffice.org-1.0/files/openoffice-wrapper b/editors/openoffice.org-1.0/files/openoffice-wrapper deleted file mode 100644 index 4c34abc864cc..000000000000 --- a/editors/openoffice.org-1.0/files/openoffice-wrapper +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh -# -# $FreeBSD: /tmp/pcvs/ports/editors/openoffice.org-1.0/files/Attic/openoffice-wrapper,v 1.3 2003-01-21 17:09:39 mbr Exp $ - -oopath=%%PREFIX%%/OpenOffice.org1.0/program/ -program=`echo $0 | sed -e 's|.*-||'` - -if [ ! $LANG ]; then - export LANG=%%LANG%% -fi - -case $program in -$0) - exec $oopath/soffice "$@" - ;; - *) - exec $oopath/$program "$@" - ;; -esac |