diff options
Diffstat (limited to 'python/builder.go')
-rw-r--r-- | python/builder.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/builder.go b/python/builder.go index 36baecdf1..7d7239c55 100644 --- a/python/builder.go +++ b/python/builder.go @@ -45,7 +45,7 @@ var ( hostPar = pctx.AndroidStaticRule("hostPar", blueprint.RuleParams{ Command: `sed -e 's/%interpreter%/$interp/g' -e 's/%main%/$main/g' $template > $stub && ` + - `echo "#!/usr/bin/env python" >${out}.prefix &&` + + `echo "#!/usr/bin/env $interp" >${out}.prefix &&` + `$mergeParCmd -p --prefix ${out}.prefix -pm $stub $out $srcsZips && ` + `chmod +x $out && (rm -f $stub; rm -f ${out}.prefix)`, CommandDeps: []string{"$mergeParCmd"}, @@ -91,7 +91,7 @@ func registerBuildActionForParFile(ctx android.ModuleContext, embeddedLauncher b if !embeddedLauncher { // the path of stub_template_host.txt from source tree. - template := android.PathForSource(ctx, stubTemplateHost) + template := android.PathForSource(ctx, StubTemplateHost) implicits = append(implicits, template) // intermediate output path for __main__.py |