Python: Fix package directory
Vicki Pfau vi@endrift.com
Sat, 24 Feb 2018 15:05:43 -0500
2 files changed,
2 insertions(+),
1 deletions(-)
M
CHANGES
→
CHANGES
@@ -52,6 +52,7 @@ - GB Timer: Minor accuracy improvements
- GB Audio: Clock frame events on DIV - GBA: Fix SharkPort saves for EEPROM games - Qt: Fix opening in fullscreen (fixes mgba.io/i/993) + - Python: Fix package directory Misc: - GBA Timer: Use global cycles for timers - GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
M
src/platform/python/setup.py.in
→
src/platform/python/setup.py.in
@@ -22,7 +22,7 @@ author_email="jeffrey@endrift.com",
url="http://github.com/mgba-emu/mgba/", packages=["mgba"], package_dir={ - "mgba": "${CMAKE_CURRENT_SOURCE_DIR}" + "mgba": "${CMAKE_CURRENT_SOURCE_DIR}/mgba" }, setup_requires=['cffi>=1.6', 'pytest-runner'], install_requires=['cffi>=1.6', 'cached-property'],