mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
ef23de7290
If you are using pkgng and can't deinstall this package, reinstall using: make -DFORCE_PKG_REGISTER -C /usr/ports/textproc/p5-XML-SAX-ExpatXS install Fix by: swills
8 lines
133 B
Bash
8 lines
133 B
Bash
#!/bin/sh
|
|
|
|
case $1 in
|
|
POST-INSTALL)
|
|
perl -MXML::SAX -e 'XML::SAX->add_parser(q(XML::SAX::ExpatXS))->save_parsers();'
|
|
;;
|
|
esac
|