bin_dir is treated as is, nothing is appended to it

This commit is contained in:
Jabba Laci 2016-01-25 22:40:31 +01:00
parent 38f80ab5e4
commit f29450bc5c

View file

@ -821,7 +821,7 @@ class Buildozer(object):
@property
def bin_dir(self):
if self.bin_apk_dir:
return join(self.bin_apk_dir, 'bin')
return self.bin_apk_dir
return join(self.root_dir, 'bin')
@property