From ef0401021aca576bcabb443b3f545d0693168741 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 16 Jun 2014 15:44:21 +0200 Subject: [PATCH] chromium: disable fstack-protector-strong in the build phase too. --- srcpkgs/chromium/template | 2 ++ 1 file changed, 2 insertions(+) diff --git a/srcpkgs/chromium/template b/srcpkgs/chromium/template index caf9cfb2a0..cd8f4978e6 100644 --- a/srcpkgs/chromium/template +++ b/srcpkgs/chromium/template @@ -162,6 +162,8 @@ do_configure() { } do_build() { + export CFLAGS="${CFLAGS/-fstack-protector-strong/}" + export CXXFLAGS="${CXXFLAGS/-fstack-protector-strong/}" make BUILDTYPE=Release ${makejobs} chrome chrome_sandbox chromedriver }