libelf: fix build on macOS x86_64 (#34646)

This commit is contained in:
Adam J. Stewart 2022-12-22 15:58:32 -06:00 committed by GitHub
parent 38c1639c9c
commit 30343d65ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,14 +30,14 @@ class Libelf(AutotoolsPackage):
provides("elf@0")
# configure: error: neither int nor long is 32-bit
depends_on("automake", when="platform=darwin target=aarch64:", type="build")
depends_on("autoconf", when="platform=darwin target=aarch64:", type="build")
depends_on("libtool", when="platform=darwin target=aarch64:", type="build")
depends_on("m4", when="platform=darwin target=aarch64:", type="build")
depends_on("automake", when="platform=darwin", type="build")
depends_on("autoconf", when="platform=darwin", type="build")
depends_on("libtool", when="platform=darwin", type="build")
depends_on("m4", when="platform=darwin", type="build")
@property
def force_autoreconf(self):
return self.spec.satisfies("platform=darwin target=aarch64:")
return self.spec.satisfies("platform=darwin")
def configure_args(self):
args = ["--enable-shared", "--disable-debug"]