perlPackages.TextBibTeX: use lib instead of lib64 on aarch64 (#122567)

This commit is contained in:
Vincenzo Mantova
2021-05-15 09:04:35 +01:00
committed by GitHub
parent 8599a6c417
commit 3d385c7894
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
--- a/Build.PL
+++ b/Build.PL
@@ -88,7 +88,7 @@ if ( $^O =~ /mswin32/i ) {
}
}
else {
- if ( $Config{archname} =~ /^x86_64|^ppc64|^s390x|^aarch64|^riscv64/ ) {
+ if ( $Config{archname} =~ /^x86_64|^ppc64|^s390x|^riscv64/ ) {
$libdir =~ s/\bbin\b/lib64/;
if ( !-d $libdir ) {
my $test = $libdir;