client.mk: Use Python 3.

This commit is contained in:
Vincent Povirk 2019-08-13 15:24:12 -05:00 committed by Jacek Caban
parent 97f585874a
commit 22c4cbae1a

View File

@ -80,7 +80,7 @@ endif
SH := /bin/sh
PERL ?= perl
PYTHON ?= $(shell which python2.7 > /dev/null 2>&1 && echo python2.7 || echo python)
PYTHON ?= $(shell which python3 > /dev/null 2>&1 && echo python3 || echo python)
CONFIG_GUESS_SCRIPT := $(wildcard $(TOPSRCDIR)/build/autoconf/config.guess)
ifdef CONFIG_GUESS_SCRIPT