mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 10:19:51 +00:00
perl: fix bootstrap
This commit is contained in:
parent
c2bf2a8174
commit
29707bd2ea
1 changed files with 2 additions and 2 deletions
|
|
@ -23,8 +23,8 @@ sub false () {
|
|||
}
|
||||
|
||||
if ( !__PACKAGE__->can('pack') ) { # this idea comes from Text::Xslate
|
||||
my $backend = $ENV{ PERL_DATA_MESSAGEPACK } || '';
|
||||
if ( $backend !~ /\b pp \b/xms or $ENV{PERL_ONLY} ) {
|
||||
my $backend = $ENV{PERL_DATA_MESSAGEPACK} || ($ENV{PERL_ONLY} ? 'pp' : '');
|
||||
if ( $backend !~ /\b pp \b/xms ) {
|
||||
eval {
|
||||
require XSLoader;
|
||||
XSLoader::load(__PACKAGE__, $VERSION);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue