diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-06-28 10:52:05 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-06-28 10:52:05 -0400 |
commit | b7b368a1ed0e2d766522385e1b3ce7c8a71e696a (patch) | |
tree | 7608e6e5fdc78c3566c21121dca78f30f36e9fcd /Makefile | |
parent | d2fafbdd9e9cf1a5e1a05a254f22c5512b82cb69 (diff) | |
download | kutter-b7b368a1ed0e2d766522385e1b3ce7c8a71e696a.tar.gz kutter-b7b368a1ed0e2d766522385e1b3ce7c8a71e696a.tar.xz kutter-b7b368a1ed0e2d766522385e1b3ce7c8a71e696a.zip |
build: Default to python2 in the Makefile
Set PYTHON=python2 instead of python as some systems point python to
python3.
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
@@ -22,7 +22,7 @@ OBJCOPY=$(CROSS_PREFIX)objcopy OBJDUMP=$(CROSS_PREFIX)objdump STRIP=$(CROSS_PREFIX)strip CPP=cpp -PYTHON=python +PYTHON=python2 # Source files src-y = |