diff options
Diffstat (limited to 'python/builder.go')
-rw-r--r-- | python/builder.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/python/builder.go b/python/builder.go index 353054d96..969f9efde 100644 --- a/python/builder.go +++ b/python/builder.go @@ -35,6 +35,13 @@ var ( }, "args") + combineZip = pctx.AndroidStaticRule("combineZip", + blueprint.RuleParams{ + Command: `$mergeParCmd $out $in`, + CommandDeps: []string{"$mergeParCmd"}, + }, + ) + hostPar = pctx.AndroidStaticRule("hostPar", blueprint.RuleParams{ Command: `sed -e 's/%interpreter%/$interp/g' -e 's/%main%/$main/g' $template > $stub && ` + |