Merge "CpExecutable should not preserve symlink"

This commit is contained in:
Treehugger Robot
2022-08-16 03:02:53 +00:00
committed by Gerrit Code Review

View File

@@ -68,7 +68,7 @@ var (
CpExecutable = pctx.AndroidStaticRule("CpExecutable",
blueprint.RuleParams{
Command: "rm -f $out && cp $cpPreserveSymlinks $cpFlags $in $out && chmod +x $out$extraCmds",
Command: "rm -f $out && cp $cpFlags $in $out && chmod +x $out$extraCmds",
Description: "cp $out",
},
"cpFlags", "extraCmds")