mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
a51be810ca
Fix pkg-install/pkg-deinstall scripts
8 lines
131 B
Bash
8 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
|