From 01f1ceca521cd2eef8bf56dabc5407e1dc59e920 Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Wed, 1 Jun 2016 21:39:15 +0200 Subject: [PATCH] chromium: unbreak musl build use_experimental_allocator_shim depends on glibc --- srcpkgs/chromium/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/chromium/template b/srcpkgs/chromium/template index 6c02046dab4..924253d6118 100644 --- a/srcpkgs/chromium/template +++ b/srcpkgs/chromium/template @@ -167,11 +167,11 @@ do_configure() { case "${XBPS_TARGET_MACHINE}" in x86_64-musl*) conf+=" -Ddisable_nacl=1 -Ddisable_pnacl=1" - conf+=" -Duse_allocator=none -Dtarget_arch=x64" + conf+=" -Duse_allocator=none -Duse_experimental_allocator_shim=false -Dtarget_arch=x64" ;; i686-musl*) conf+=" -Ddisable_nacl=1 -Ddisable_pnacl=1" - conf+=" -Duse_allocator=none -Dtarget_arch=ia32" + conf+=" -Duse_allocator=none -Duse_experimental_allocator_shim=false -Dtarget_arch=ia32" ;; i686) conf+=" -Ddisable_nacl=1 -Ddisable_pnacl=1"