Skip to content

Commit fbdf8c2

Browse files
committed
Fix FreetypePyRecipe.get_recipe_env
1 parent e812a42 commit fbdf8c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythonforandroid/recipes/freetype-py/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ class FreetypePyRecipe(PyProjectRecipe):
77
depends = ['freetype']
88
site_packages_name = 'freetype'
99

10-
def get_recipe_env(self, arch=None, with_flags_in_cc=True):
11-
env = super().get_recipe_env(arch, with_flags_in_cc)
10+
def get_recipe_env(self, arch=None, **kwargs):
11+
env = super().get_recipe_env(arch, **kwargs)
1212
env["SETUPTOOLS_SCM_PRETEND_VERSION_FOR_freetype"] = self.version
1313
return env
1414

0 commit comments

Comments
 (0)