put bin/ in builddir if specified in buildozer.spec

This commit is contained in:
Jabba Laci 2016-01-24 17:52:10 +01:00
parent 7091cf098c
commit 83a44887b5

View file

@ -818,6 +818,8 @@ class Buildozer(object):
@property
def bin_dir(self):
if self.builddir:
return join(self.builddir, 'bin')
return join(self.root_dir, 'bin')
@property