Skip to content

Commit

Permalink
Merge pull request #46 from brousch/patch-2
Browse files Browse the repository at this point in the history
Fixed missing 'r' on ANDROIDNDKVER environment export
  • Loading branch information
akshayaurora committed Oct 11, 2013
2 parents a5f1cf4 + b7e0bb0 commit 105e0ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildozer/targets/android.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ def install_platform(self):
'ANDROIDSDK': self.android_sdk_dir,
'ANDROIDNDK': self.android_ndk_dir,
'ANDROIDAPI': self.android_api,
'ANDROIDNDKVER': self.android_ndk_version})
'ANDROIDNDKVER': 'r{}'.format(self.android_ndk_version)})

def get_available_packages(self):
available_modules = self.buildozer.cmd(
Expand Down

0 comments on commit 105e0ee

Please sign in to comment.