mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
220edb1eff
2. add 'pkg-deinstall'
7 lines
148 B
Perl
7 lines
148 B
Perl
#!/usr/bin/perl
|
|
if('DEINSTALL' eq $ARGV[1]) {
|
|
eval "use XML::SAX;";
|
|
die $@ if $@;
|
|
XML::SAX->remove_parser(q(XML::SAX::Expat))->save_parsers();
|
|
}
|