summaryrefslogtreecommitdiff
path: root/android/defs.go
diff options
context:
space:
mode:
author David Su <dysu@google.com> 2020-07-24 17:19:23 +0000
committer Colin Cross <ccross@android.com> 2020-07-24 21:25:13 +0000
commitbec7f53e4f0765958550eef687cf48659c75be52 (patch)
treed7a8420f3c5666327374ff102aec9c06c2ee3be9 /android/defs.go
parentdd18efd95d36a0764dad27bf65b64af83e322b7e (diff)
Revert "Add prebuilt_build_tool to allow genrules to use prebuil..."
Revert submission 1366377-prebuilt_build_tool_make Reason for revert: breaks build Reverted Changes: I20bf062bb:Export prebuilt tools to Make I4bb526492:Move some prebuilt build tool configs to Soong I195b68813:Support per-module MakeVars Ibcb257e7b:Fix dependency loop with flex I6150f0f39:Switch cc's use of bison and flex to prebuilt_buil... I6939451b8:Reland "Use genrules to build a consistent awk." Idee60640f:Add prebuilt_build_tool modules for genrule use I00893172b:Rename bison to bison_bin I82c26be1c:Add prebuilt_build_tool to allow genrules to use p... Change-Id: I6b3acf306d355f3e0463564c9ebe9482fa0f609e
Diffstat (limited to 'android/defs.go')
-rw-r--r--android/defs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/defs.go b/android/defs.go
index 83daa0368..45522246f 100644
--- a/android/defs.go
+++ b/android/defs.go
@@ -69,7 +69,7 @@ var (
// A symlink rule.
Symlink = pctx.AndroidStaticRule("Symlink",
blueprint.RuleParams{
- Command: "rm -f $out && ln -f -s $fromPath $out",
+ Command: "ln -f -s $fromPath $out",
Description: "symlink $out",
},
"fromPath")