aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2017-08-31 12:29:17 -0700
committerColin Cross <ccross@android.com>2017-08-31 13:48:52 -0700
commit5c51792926b063945d786cc8a1e407a2ce2159cf (patch)
treecef55100e4632b4a1c4d141392287802c65f3693 /python
parentadd7fdf1a5d7652cfc8ef8da4e517eb4e11e0e08 (diff)
downloadbuild_soong-5c51792926b063945d786cc8a1e407a2ce2159cf.tar.gz
build_soong-5c51792926b063945d786cc8a1e407a2ce2159cf.tar.bz2
build_soong-5c51792926b063945d786cc8a1e407a2ce2159cf.zip
Make binaries executable
Split InstallFileName into InstallExecutable that does chmod +x after copying the file. Also remove InstallFile and rename InstallFileName to InstallFile. Test: m -j checkbuild Change-Id: Id41ad4eafe521f6cd5d8cc250b7747ecb3da8dfc
Diffstat (limited to 'python')
-rw-r--r--python/installer.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/installer.go b/python/installer.go
index 9c12f5f7..04698c55 100644
--- a/python/installer.go
+++ b/python/installer.go
@@ -35,5 +35,6 @@ func NewPythonInstaller(dir string) *pythonInstaller {
var _ installer = (*pythonInstaller)(nil)
func (installer *pythonInstaller) install(ctx android.ModuleContext, file android.Path) {
- installer.path = ctx.InstallFile(android.PathForModuleInstall(ctx, installer.dir), file)
+ installer.path = ctx.InstallFile(android.PathForModuleInstall(ctx, installer.dir),
+ file.Base(), file)
}