Perl-Toolchain-Gang / ExtUtils-MakeMaker

Perl module to make Makefiles and build modules (what backs Makefile.PL)
https://metacpan.org/release/ExtUtils-MakeMaker
64 stars 77 forks source link

Use shellwords in ExtUtils::Liblist::Kid::_unix_os2_ext #392

Closed Leont closed 3 years ago

Leont commented 3 years ago

If quotewords is passed a string that ends with a space (including the string " " itself), it will return an undef as last value. This is not useful for nor expected by ExtUtils::Liblist::Kid. Instead, this changes it to use shellwords, which returns an empty list in this case.

This fixes #391