diff --git a/CHANGES b/CHANGES index c8cc483f2..06f0621cc 100644 --- a/CHANGES +++ b/CHANGES @@ -24,6 +24,7 @@ Bugfixes: - GBA Hardware: RTC accuracy improvements - GBA: Fix SharkPort saves for EEPROM games - Qt: Fix opening in fullscreen (fixes mgba.io/i/993) + - Python: Fix package directory Misc: - GBA: Improve multiboot image detection - GB MBC: Remove erroneous bank 0 wrapping diff --git a/src/platform/python/setup.py.in b/src/platform/python/setup.py.in index 370999093..ceaa475f1 100644 --- a/src/platform/python/setup.py.in +++ b/src/platform/python/setup.py.in @@ -21,7 +21,7 @@ setup(name="${BINARY_NAME}", 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'], install_requires=['cffi>=1.6', 'cached-property'],