From 7c3ea01b44f5f076666e3ca536192f1c654af5d5 Mon Sep 17 00:00:00 2001 From: Nils <> Date: Sat, 2 Jan 2021 09:31:19 +0100 Subject: [PATCH] explicit py3 in makefile --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 11f1b09..4a116d1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -12,7 +12,7 @@ all: cp -r "$(PROGRAM)" __main__.py engine qtgui build #Clean all pycache in build cd build && find . -type d -name "__pycache__" -exec rm -r {} + - python -m zipapp "build" --output="$(PROGRAM).bin" --python="/usr/bin/env python3" + python3 -m zipapp "build" --output="$(PROGRAM).bin" --python="/usr/bin/env python3" rm build/compiledprefix.py #nsm-data @@ -20,7 +20,7 @@ all: cp tools/nsm-data buildnsmdata/__main__.py cp tools/nsmclient.py buildnsmdata/nsmclient.py cd buildnsmdata && find . -type d -name "__pycache__" -exec rm -r {} + - python -m zipapp "buildnsmdata" --output="nsm-data.bin" --python="/usr/bin/env python3" + python3 -m zipapp "buildnsmdata" --output="nsm-data.bin" --python="/usr/bin/env python3" clean: rm -rf build/