From 781e0c03a2315bccf0321dad66b8714c1e846c51 Mon Sep 17 00:00:00 2001 From: kjellander Date: Mon, 13 Jun 2016 05:41:11 -0700 Subject: [PATCH] GN: Fix 32-bit Mac library error The error hasn't been noticed since we don't really do (or support) Mac 32-bit builds. BUG=webrtc:5949 NOTRY=True Review-Url: https://codereview.webrtc.org/2065583002 Cr-Commit-Position: refs/heads/master@{#13111} --- webrtc/base/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/base/BUILD.gn b/webrtc/base/BUILD.gn index 07678bf21f..583cf68813 100644 --- a/webrtc/base/BUILD.gn +++ b/webrtc/base/BUILD.gn @@ -61,7 +61,7 @@ config("rtc_base_all_dependent_config") { "SystemConfiguration.framework", ] if (current_cpu == "x86") { - libs = [ "Carbon.framework" ] + libs += [ "Carbon.framework" ] } } }