diff options
Diffstat (limited to 'editors/openoffice-devel')
-rw-r--r-- | editors/openoffice-devel/files/openoffice-wrapper | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/editors/openoffice-devel/files/openoffice-wrapper b/editors/openoffice-devel/files/openoffice-wrapper index 2e005b566d8..e074e4e68a8 100644 --- a/editors/openoffice-devel/files/openoffice-wrapper +++ b/editors/openoffice-devel/files/openoffice-wrapper @@ -1,6 +1,6 @@ #!/bin/sh # -# $FreeBSD: /tmp/pcvs/ports/editors/openoffice-devel/files/Attic/openoffice-wrapper,v 1.4 2003-03-28 09:00:55 mbr Exp $ +# $FreeBSD: /tmp/pcvs/ports/editors/openoffice-devel/files/Attic/openoffice-wrapper,v 1.5 2003-03-29 07:47:10 mbr Exp $ oopath=%%PREFIX%%/OpenOffice.org-%%BUILD_NR%%/program/ program=`echo $0 | sed -e 's|.*-||'` @@ -9,8 +9,10 @@ if [ ! $LANG ]; then export LANG=%%LANG%% fi -if [ ! -e $HOME/OpenOffice.org1.1Beta/user/config/soffice.cfg ]; then - touch $HOME/OpenOffice.org1.1Beta/user/config/soffice.cfg +if [ -e $HOME/OpenOffice.org1.1Beta/setup.log ]; then + if [ ! -e $HOME/OpenOffice.org1.1Beta/user/config/soffice.cfg ]; then + touch $HOME/OpenOffice.org1.1Beta/user/config/soffice.cfg + fi fi case $program in |