Skip to content

Commit 37c6d9d

Browse files
committed
Removed cython include path setter for Kivy
This is no longer necessary in Kivy master
1 parent f6433d0 commit 37c6d9d

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

pythonforandroid/recipes/kivy/__init__.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,6 @@ def get_recipe_env(self, arch):
4141
join(self.ctx.bootstrap.build_dir, 'jni', 'SDL2_ttf'),
4242
])
4343

44-
# Set include dir for pxi files - Kivy normally handles this
45-
# in the setup.py invocation, but we skip this
46-
build_dir = self.get_build_dir(arch.arch)
47-
if exists(join(build_dir, 'kivy', 'include')):
48-
self.cython_args = ['-I{}'.format(join(build_dir, 'kivy', 'include'))]
49-
50-
env['CFLAGS'] += ' -I{}'.format(join(build_dir, 'kivy', 'include'))
51-
5244
return env
5345

5446
recipe = KivyRecipe()

0 commit comments

Comments
 (0)