INTEGRATION: CWS obr07 (1.3.60); FILE MERGED

2008/01/29 12:50:35 obr 1.3.60.1: handle uncompressed Solaris packages
This commit is contained in:
Vladimir Glazounov 2008-02-12 12:31:10 +00:00
parent 27cee73d9a
commit 1d8f55811f

View file

@ -57,7 +57,11 @@ sub unpack_solpkg
sed -e '1 d' -e 's/[0-9][0-9]* [0-9][0-9]* [0-9]\\{10\\}\$//' $package/pkgmap > filelist sed -e '1 d' -e 's/[0-9][0-9]* [0-9][0-9]* [0-9]\\{10\\}\$//' $package/pkgmap > filelist
grep -v "^PSTAMP=" $package/pkginfo > pkginfo grep -v "^PSTAMP=" $package/pkginfo > pkginfo
cp $package/install/* . cp $package/install/* .
bzcat $package/archive/none.bz2 | cpio -i -d if [ -f $package/archive/none.bz2 ]; then
bzcat $package/archive/none.bz2 | cpio -i -d
else
cp -pr $package/reloc/* .
fi
EOF EOF
} }