Skip to content

Commit fccd108

Browse files
committed
[bug] Fix wrong env variable for hostpython build path in archs.py
1 parent 85207a0 commit fccd108

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pythonforandroid/archs.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,12 @@ def get_env(self, with_flags_in_cc=True, clang=False):
167167
'host' + self.ctx.python_recipe.name, self.ctx)
168168
env['BUILDLIB_PATH'] = join(
169169
hostpython_recipe.get_build_dir(self.arch),
170-
'build', 'lib.{}-{}'.format(
171-
build_platform, self.ctx.python_recipe.major_minor_version_string)
170+
'native-build',
171+
'build',
172+
'lib.{}-{}'.format(
173+
build_platform,
174+
self.ctx.python_recipe.major_minor_version_string,
175+
),
172176
)
173177

174178
env['PATH'] = environ['PATH']

0 commit comments

Comments
 (0)