File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 34
34
- name : Start from clean state
35
35
run : make clean
36
36
- name : Run tests
37
- run : make check
37
+ run : make PYTHON3=python check
Original file line number Diff line number Diff line change 13
13
14
14
SHELL := /bin/bash
15
15
16
- PYTHON3 ?= $(shell which python3.8 2>/dev/null || which python3.7 2>/dev/null || which python3.6 2>/dev/null || which python3)
17
- ifeq ($(PYTHON3 ) ,)
18
- $(error python3 not found)
19
- endif
16
+ PYTHON3 ?= python3
20
17
21
18
# This recipe intentionally blank.
22
19
all :
Original file line number Diff line number Diff line change @@ -15,10 +15,7 @@ SHELL := /bin/bash
15
15
16
16
top_srcdir := $(shell cd .. ; pwd)
17
17
18
- PYTHON3 ?= $(shell which python3.8 2>/dev/null || which python3.7 2>/dev/null || which python3.6 2>/dev/null || which python3)
19
- ifeq ($(PYTHON3 ) ,)
20
- $(error python3 not found)
21
- endif
18
+ PYTHON3 ?= python3
22
19
23
20
all : \
24
21
.venv.done.log
You can’t perform that action at this time.
0 commit comments