We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dc7a73 commit 59b5f73Copy full SHA for 59b5f73
cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm
@@ -3255,7 +3255,10 @@ PPD_PERLVERS
3255
# archname did not change from 5.6 to 5.8, but those versions may
3256
# not be not binary compatible so now we append the part of the
3257
# version that changes when binary compatibility may change
3258
- if ("$]" >= 5.008) {
+ if ("$]" >= 41) {
3259
+ $archname .= "-$Config{api_version}";
3260
+ }
3261
+ elsif ("$]" >= 5.008) {
3262
$archname .= "-$Config{api_revision}.$Config{api_version}";
3263
}
3264
push @ppd_chunks, sprintf <<'PPD_OUT', $archname;
0 commit comments