From bc8d50f3e7f3f46caddacdee75fbe4f74b2fb995 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 29 Jan 2021 20:13:07 -0600 Subject: [PATCH] [nostalgia] Ensure setup_build.py uses Python 3 --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index c3b44f4e..80623092 100644 --- a/Makefile +++ b/Makefile @@ -119,32 +119,32 @@ configure-release: ifneq (,$(wildcard build/${HOST_ENV}-release)) ${ENV_RUN} ${RM_RF} build/${HOST_ENV}-release endif - ${ENV_RUN} python ./scripts/setup-build.py ${HOST_ENV} release ${VCPKG_DIR} + ${ENV_RUN} python3 ./scripts/setup-build.py ${HOST_ENV} release ${VCPKG_DIR} .PHONY: configure-debug configure-debug: ifneq (,$(wildcard build/${HOST_ENV}-debug)) ${ENV_RUN} ${RM_RF} build/${HOST_ENV}-debug endif - ${ENV_RUN} python ./scripts/setup-build.py ${HOST_ENV} debug ${VCPKG_DIR} + ${ENV_RUN} python3 ./scripts/setup-build.py ${HOST_ENV} debug ${VCPKG_DIR} .PHONY: configure-asan configure-asan: ifneq (,$(wildcard build/${HOST_ENV}-asan)) ${ENV_RUN} ${RM_RF} build/${HOST_ENV}-asan endif - ${ENV_RUN} python ./scripts/setup-build.py ${HOST_ENV} asan ${VCPKG_DIR} + ${ENV_RUN} python3 ./scripts/setup-build.py ${HOST_ENV} asan ${VCPKG_DIR} .PHONY: configure-gba configure-gba: ifneq (,$(wildcard build/gba-release)) ${ENV_RUN} ${RM_RF} build/gba-release endif - ${ENV_RUN} python ./scripts/setup-build.py gba release ${VCPKG_DIR} + ${ENV_RUN} python3 ./scripts/setup-build.py gba release ${VCPKG_DIR} .PHONY: configure-gba-debug configure-gba-debug: ifneq (,$(wildcard build/gba-debug)) ${ENV_RUN} ${RM_RF} build/gba-debug endif - ${ENV_RUN} python ./scripts/setup-build.py gba debug ${VCPKG_DIR} + ${ENV_RUN} python3 ./scripts/setup-build.py gba debug ${VCPKG_DIR}