Skip to content

Commit

Permalink
Merge pull request #1715 from j-devel/fix-android-setuppy-non-sdl
Browse files Browse the repository at this point in the history
Fix compile error of recipe "android" for non-sdl bootstrap build
  • Loading branch information
AndreMiras authored Feb 18, 2019
2 parents 1db60cf + 6d6394d commit 6ca419e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pythonforandroid/recipes/android/src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
'pygame': ['sdl'],
'sdl2': ['SDL2', 'SDL2_image', 'SDL2_mixer', 'SDL2_ttf']
}
sdl_libs = lib_dict[os.environ['BOOTSTRAP']]
sdl_libs = lib_dict.get(os.environ['BOOTSTRAP'], [])

renpy_sound = Extension('android._android_sound',
['android/_android_sound.c', 'android/_android_sound_jni.c', ],
Expand Down

0 comments on commit 6ca419e

Please sign in to comment.