Subject: | ShareDir plugin changes namespaces rudely |
When the ShareDir plugin recognizes there are sharedirs to be added, it
adds these lines to Makefile.PL:
package
MY;
use File::ShareDir::Install qw(postamble);
Unfortunately, other plugins add content below this point, which is now
in a different namespace. This breaks the Conflicts plugin, as
check_conflicts() is called at the top of the file but the sub
definition is below the namespace change.
Thanks doy for discovering this.
Fix coming up in my github.