17 lines
305 B
Python
17 lines
305 B
Python
|
from pythonforandroid.toolchain import Bootstrap
|
||
|
|
||
|
|
||
|
class EmptyBootstrap(Bootstrap):
|
||
|
name = 'empty'
|
||
|
|
||
|
recipe_depends = []
|
||
|
|
||
|
can_be_chosen_automatically = False
|
||
|
|
||
|
def assemble_distribution(self):
|
||
|
print('empty bootstrap has no distribute')
|
||
|
exit(1)
|
||
|
|
||
|
|
||
|
bootstrap = EmptyBootstrap()
|