'tar' fails at unpacking adobe files, but the files get unpacked.
I simply disable the check for tar error codes. svn path=/nixpkgs/branches/stdenv-updates/; revision=25067
This commit is contained in:
parent
ee04ffcb55
commit
0fe27433af
@ -3,11 +3,13 @@ source $stdenv/setup
|
|||||||
echo "unpacking $src..."
|
echo "unpacking $src..."
|
||||||
tar xvfa $src
|
tar xvfa $src
|
||||||
|
|
||||||
ensureDir $out
|
ensureDir $out/Adobe/Reader9
|
||||||
|
|
||||||
echo "unpacking reader..."
|
echo "unpacking reader..."
|
||||||
|
set +e
|
||||||
tar xvf AdobeReader/COMMON.TAR -C $out
|
tar xvf AdobeReader/COMMON.TAR -C $out
|
||||||
tar xvf AdobeReader/ILINXR.TAR -C $out
|
tar xvf AdobeReader/ILINXR.TAR -C $out
|
||||||
|
set -e
|
||||||
|
|
||||||
# Disable this plugin for now (it needs LDAP, and I'm too lazy to add it).
|
# Disable this plugin for now (it needs LDAP, and I'm too lazy to add it).
|
||||||
rm $out/Adobe/Reader*/Reader/intellinux/plug_ins/PPKLite.api
|
rm $out/Adobe/Reader*/Reader/intellinux/plug_ins/PPKLite.api
|
||||||
|
Loading…
x
Reference in New Issue
Block a user