From a24166b5c7150f2ca79becb37b7213c0a1407921 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Mon, 1 Aug 2016 15:42:38 -0700 Subject: [PATCH] Fix mac soong build Change-Id: I50b3ca1af571d00a0cc5efc80c5d1c6f0b1f789b --- cc/builder.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cc/builder.go b/cc/builder.go index 02ea63d71..f1282f514 100644 --- a/cc/builder.go +++ b/cc/builder.go @@ -96,8 +96,8 @@ var ( darwinStrip = pctx.StaticRule("darwinStrip", blueprint.RuleParams{ - Command: "${macStripPath} -u -r -o $out $in", - CommandDeps: []string{"${macStripPath}"}, + Command: "${config.MacStripPath} -u -r -o $out $in", + CommandDeps: []string{"${config.MacStripPath}"}, Description: "strip $out", })