Perl package: fix 64-bit detection on Windows (#36785)

This commit is contained in:
John W. Parent 2023-04-11 19:08:15 -04:00 committed by GitHub
parent 530669346a
commit f1c0775245
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -230,7 +230,7 @@ def nmake_arguments(self):
return args
def is_64bit(self):
return "64" in str(self.pkg.spec.target.family)
return "64" in str(self.spec.target.family)
def configure_args(self):
spec = self.spec