File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -1313,10 +1313,13 @@ def build_recipes(names, ctx):
1313
1313
recipe .postbuild ()
1314
1314
1315
1315
return
1316
- for recipe in recipes :
1317
- recipe .init_with_ctx (ctx )
1318
- for recipe in recipes :
1319
- recipe .execute ()
1316
+
1317
+ def run_pymodules_install (modules ):
1318
+ print ('Pymodules can\' t currently be installed. Skipping.' )
1319
+ if len (modules ):
1320
+ print ('Asked to build some python modules. Refusing!' )
1321
+ exit (1 )
1322
+
1320
1323
1321
1324
def biglink (ctx ):
1322
1325
# AND: Shouldn't hardcode ArchAndroid! In reality need separate
@@ -1467,6 +1470,8 @@ def create_android_project(self):
1467
1470
1468
1471
build_recipes (recipes , ctx )
1469
1472
1473
+ run_pymodules_install ([])
1474
+
1470
1475
print ('Done building recipes, exiting for now.' )
1471
1476
return
1472
1477
You can’t perform that action at this time.
0 commit comments