miyagawa / cpanminus

cpanminus - get, unpack, build and install modules from CPAN
http://cpanmin.us
752 stars 213 forks source link

please classify AIX to be an operating system with a bad tar #660

Open XSven opened 1 year ago

XSven commented 1 year ago

The AIX related issue #597 was solve by changing the order of the PATH. From my perspective the first step should have been to classify AIX as an operating system that has a bad tar. Could this

use constant BAD_TAR => ($^O eq 'solaris' || $^O eq 'hpux');

be changed to

use constant BAD_TAR => ($^O eq 'solaris' || $^O eq 'hpux' || $^O eq 'aix');

in the next release. I have tested this on an AIX 7.2 platform and it works if both gzip and bzip2 are found.

XSven commented 1 year ago

How can I help, to raise the priority of this and the issue #630 too?