diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-05-13 14:05:51 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-05-13 14:07:20 -0400 |
commit | 9c45f53b24754fb92e03836e22796d06ab1e9825 (patch) | |
tree | 3bc57d03321db8122757be9a1f69cec66b50dc82 /Makefile | |
parent | 82684780060d5008373457dc9140fa60f3b11847 (diff) | |
download | kutter-9c45f53b24754fb92e03836e22796d06ab1e9825.tar.gz kutter-9c45f53b24754fb92e03836e22796d06ab1e9825.tar.xz kutter-9c45f53b24754fb92e03836e22796d06ab1e9825.zip |
Makefile: Default to python3 for micro-controller build scripts
It's more likely that python3 will be installed than python2 on a
typical modern Linux distribution, so use python3 by default.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ OBJCOPY=$(CROSS_PREFIX)objcopy OBJDUMP=$(CROSS_PREFIX)objdump STRIP=$(CROSS_PREFIX)strip CPP=cpp -PYTHON=python2 +PYTHON=python3 # Source files src-y = |