a51be810ca
Fix pkg-install/pkg-deinstall scripts
7 lines
131 B
Bash
7 lines
131 B
Bash
#!/bin/sh
|
|
|
|
case $2 in
|
|
DEINSTALL)
|
|
perl -MXML::SAX -e 'XML::SAX->remove_parser(q(XML::SAX::Expat))->save_parsers();'
|
|
;;
|
|
esac
|