diff --git a/Makefile b/Makefile index b6754e02..b358dfbe 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ else endif .PHONY: pkg-gba -pkg-gba: install +pkg-gba: ${ENV_RUN} ${PYTHON3} ./scripts/pkg-gba.py sample_project .PHONY: run diff --git a/scripts/pkg-gba.py b/scripts/pkg-gba.py index 7fe4f802..69d0f347 100755 --- a/scripts/pkg-gba.py +++ b/scripts/pkg-gba.py @@ -21,7 +21,7 @@ host_env = f'{os}-{arch}' with open(".current_build","r") as f: current_build = f.readlines()[0] -bin = f'./dist/{host_env}-{current_build}/bin/' +bin = f'./build/{host_env}-{current_build}/bin/' nostalgia_bin = 'build/gba-release/bin/nostalgia.bin' nostalgia_project = sys.argv[1] nostalgia_gba = 'nostalgia.gba'