From: Thomas Huth Date: Tue, 29 Mar 2022 06:39:58 +0000 (+0200) Subject: tests/lcitool: Do not use a hard-coded /usr/bin/python3 as python interpreter X-Git-Tag: qemu-xen-4.17.0-rc4~16^2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=04cca669b237337cc8734788c3ad968aa8e0b57f;p=qemu-xen.git tests/lcitool: Do not use a hard-coded /usr/bin/python3 as python interpreter When running "make lcitool-refresh", this currently uses the hard-coded /usr/bin/python3 from the script's shebang line for running Python. That's bad, since neither /usr/bin/python3 is guaranteed to exist, nor does it honor the python interpreter that the user might have chosen while running the "configure" script. Thus let's rather use $(PYTHON) in the Makefile, and improve the shebang line in the script in case someone runs this directly. Signed-off-by: Thomas Huth Reviewed-by: Daniel P. Berrangé Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20220329063958.262669-1-thuth@redhat.com> Signed-off-by: Laurent Vivier --- diff --git a/tests/lcitool/Makefile.include b/tests/lcitool/Makefile.include index 6b215adcd1..3780185c7c 100644 --- a/tests/lcitool/Makefile.include +++ b/tests/lcitool/Makefile.include @@ -14,4 +14,4 @@ lcitool-help: lcitool lcitool-refresh: $(call quiet-command, cd $(SRC_PATH) && git submodule update --init tests/lcitool/libvirt-ci) - $(call quiet-command, $(LCITOOL_REFRESH)) + $(call quiet-command, $(PYTHON) $(LCITOOL_REFRESH)) diff --git a/tests/lcitool/refresh b/tests/lcitool/refresh index 1f00281b44..2d198ad281 100755 --- a/tests/lcitool/refresh +++ b/tests/lcitool/refresh @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 # # Re-generate container recipes #