diff options
author | Oliver Bolte <obo@openoffice.org> | 2005-07-08 10:45:29 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2005-07-08 10:45:29 +0000 |
commit | 72f78234f050c44c0daf4a26e43e1fe8692dbf66 (patch) | |
tree | d1c5d596e8e4f31d542153a48534b5e2a8e27bb8 | |
parent | 39f2c3984a81b4a5584d7e4d37e5cd721b7b4ee8 (diff) |
INTEGRATION: CWS nativefixer12 (1.3.14); FILE MERGED
2005/07/05 09:39:00 is 1.3.14.1: 124008# setup now directory independent
-rw-r--r-- | setup_native/scripts/linuxpatchscript.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/setup_native/scripts/linuxpatchscript.sh b/setup_native/scripts/linuxpatchscript.sh index a345cd56c..71de51057 100644 --- a/setup_native/scripts/linuxpatchscript.sh +++ b/setup_native/scripts/linuxpatchscript.sh @@ -35,8 +35,10 @@ fi echo "Installing..." +BASEDIR=`dirname $0` + RPMLIST="" -for i in `ls RPMS/*.rpm` +for i in `ls $BASEDIR/RPMS/*.rpm` do rpm -q `rpm -qp --qf "%{NAME}\n" $i` && RPMLIST="$RPMLIST $i" done |