We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
FreetypePyRecipe.get_recipe_env
1 parent e812a42 commit fbdf8c2Copy full SHA for fbdf8c2
pythonforandroid/recipes/freetype-py/__init__.py
@@ -7,8 +7,8 @@ class FreetypePyRecipe(PyProjectRecipe):
7
depends = ['freetype']
8
site_packages_name = 'freetype'
9
10
- def get_recipe_env(self, arch=None, with_flags_in_cc=True):
11
- env = super().get_recipe_env(arch, with_flags_in_cc)
+ def get_recipe_env(self, arch=None, **kwargs):
+ env = super().get_recipe_env(arch, **kwargs)
12
env["SETUPTOOLS_SCM_PRETEND_VERSION_FOR_freetype"] = self.version
13
return env
14
0 commit comments