Skip to content

Commit

Permalink
Fix linux hardcoded entry in archs
Browse files Browse the repository at this point in the history
I forgot to include this in commit `Fix hardcoded entries (build platform) for core modules: archs and python` (kivy#1597)

References: `Fix build platform hardcoded flags for archs.py` (f570def)
  • Loading branch information
opacam committed Jan 31, 2019
1 parent fd3e844 commit 137d9b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pythonforandroid/archs.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ def get_env(self, with_flags_in_cc=True, clang=False):
'host' + self.ctx.python_recipe.name, self.ctx)
env['BUILDLIB_PATH'] = join(
hostpython_recipe.get_build_dir(self.arch),
'build', 'lib.linux-{}-{}'.format(
uname()[-1], self.ctx.python_recipe.major_minor_version_string)
'build', 'lib.{}-{}'.format(
build_platform, self.ctx.python_recipe.major_minor_version_string)
)

env['PATH'] = environ['PATH']
Expand Down

0 comments on commit 137d9b3

Please sign in to comment.