mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-31 10:46:16 +00:00
7 lines
150 B
Perl
7 lines
150 B
Perl
#!/usr/bin/perl
|
|
if('DEINSTALL' eq $ARGV[1]) {
|
|
eval "use XML::SAX;";
|
|
die $@ if $@;
|
|
XML::SAX->remove_parser(q(XML::SAX::ExpatXS))->save_parsers();
|
|
}
|