mirror of
https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-09-11 00:02:01 +08:00
17 lines
339 B
Bash
17 lines
339 B
Bash
#!/bin/sh
|
|||
|
|
# SPDX-License-Identifier: GPL-2.0
|
||
|
|
|
||
|
|
if [ "x$PYTHON" = "x" ]
|
||
|
|
then
|
||
|
|
python3 --version >/dev/null 2>&1 && PYTHON=python3
|
||
|
|
fi
|
||
|
|
if [ "x$PYTHON" = "x" ]
|
||
|
|
then
|
||
|
|
python --version >/dev/null 2>&1 && PYTHON=python
|
||
|
|
fi
|
||
|
|
if [ "x$PYTHON" = "x" ]
|
||
|
|
then
|
||
|
|
echo Skipping test, python not detected please set environment variable PYTHON.
|
||
|
|
exit 2
|
||
|
|
fi
|