mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
f84ef2d75c
Approved by: markm
7 lines
148 B
Perl
7 lines
148 B
Perl
#!/usr/bin/perl
|
|
if('POST-INSTALL' eq $ARGV[1]) {
|
|
eval "use XML::SAX;";
|
|
die $@ if $@;
|
|
XML::SAX->add_parser(q(XML::SAX::Expat))->save_parsers();
|
|
}
|