diff options
-rw-r--r-- | editors/openoffice-1.0/files/openoffice-wrapper | 8 | ||||
-rw-r--r-- | editors/openoffice.org-1.0/files/openoffice-wrapper | 8 | ||||
-rw-r--r-- | editors/openoffice/files/openoffice-wrapper | 8 |
3 files changed, 12 insertions, 12 deletions
diff --git a/editors/openoffice-1.0/files/openoffice-wrapper b/editors/openoffice-1.0/files/openoffice-wrapper index a07bfe4..28a571a 100644 --- a/editors/openoffice-1.0/files/openoffice-wrapper +++ b/editors/openoffice-1.0/files/openoffice-wrapper @@ -1,15 +1,15 @@ #!/bin/sh # -# $FreeBSD: /tmp/pcvs/ports/editors/openoffice-1.0/files/Attic/openoffice-wrapper,v 1.1 2002-08-01 12:29:21 mbr Exp $ +# $FreeBSD: /tmp/pcvs/ports/editors/openoffice-1.0/files/Attic/openoffice-wrapper,v 1.2 2002-08-04 00:18:09 mbr Exp $ -cd %%PREFIX%%/OpenOffice.org1.0/program/ +oopath=%%PREFIX%%/OpenOffice.org1.0/program/ program=`echo $0 | sed -e 's|.*-||'` case $program in $0) - exec ./soffice "$@" + exec $oopath/soffice "$@" ;; *) - exec ./$program "$@" + exec $oopath/$program "$@" ;; esac diff --git a/editors/openoffice.org-1.0/files/openoffice-wrapper b/editors/openoffice.org-1.0/files/openoffice-wrapper index 881d40e..dd71e4d 100644 --- a/editors/openoffice.org-1.0/files/openoffice-wrapper +++ b/editors/openoffice.org-1.0/files/openoffice-wrapper @@ -1,15 +1,15 @@ #!/bin/sh # -# $FreeBSD: /tmp/pcvs/ports/editors/openoffice.org-1.0/files/Attic/openoffice-wrapper,v 1.1 2002-08-01 12:29:21 mbr Exp $ +# $FreeBSD: /tmp/pcvs/ports/editors/openoffice.org-1.0/files/Attic/openoffice-wrapper,v 1.2 2002-08-04 00:18:09 mbr Exp $ -cd %%PREFIX%%/OpenOffice.org1.0/program/ +oopath=%%PREFIX%%/OpenOffice.org1.0/program/ program=`echo $0 | sed -e 's|.*-||'` case $program in $0) - exec ./soffice "$@" + exec $oopath/soffice "$@" ;; *) - exec ./$program "$@" + exec $oopath/$program "$@" ;; esac diff --git a/editors/openoffice/files/openoffice-wrapper b/editors/openoffice/files/openoffice-wrapper index c3b59d5..83ff166 100644 --- a/editors/openoffice/files/openoffice-wrapper +++ b/editors/openoffice/files/openoffice-wrapper @@ -1,15 +1,15 @@ #!/bin/sh # -# $FreeBSD: /tmp/pcvs/ports/editors/openoffice/files/Attic/openoffice-wrapper,v 1.1 2002-08-01 12:29:21 mbr Exp $ +# $FreeBSD: /tmp/pcvs/ports/editors/openoffice/files/Attic/openoffice-wrapper,v 1.2 2002-08-04 00:18:09 mbr Exp $ -cd %%PREFIX%%/OpenOffice.org1.0/program/ +oopath=%%PREFIX%%/OpenOffice.org1.0/program/ program=`echo $0 | sed -e 's|.*-||'` case $program in $0) - exec ./soffice "$@" + exec $oopath/soffice "$@" ;; *) - exec ./$program "$@" + exec $oopath/$program "$@" ;; esac |