File boottool-use-explicit-python3-reference.patch of Package python-avocado-plugins-vt
From e23ea577b0a5a92a9e2c2826bef3cf8369709e7f Mon Sep 17 00:00:00 2001 From: Bruce Rogers <brogers@suse.com> Date: Thu, 27 Feb 2020 13:39:45 -0700 Subject: [PATCH] boottool: use explicit python3 reference Without this fix, the package build errors as follows: E: env-script-interpreter (Badness: 9) /usr/share/avocado-plugins-vt/shared/deps/run_autotest/boottool.py /usr/bin/env python Signed-off-by: Bruce Rogers <brogers@suse.com> --- virttest/shared/deps/run_autotest/boottool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virttest/shared/deps/run_autotest/boottool.py b/virttest/shared/deps/run_autotest/boottool.py index 1d688a5f..143ec972 100755 --- a/virttest/shared/deps/run_autotest/boottool.py +++ b/virttest/shared/deps/run_autotest/boottool.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python3 ''' A boottool clone, but written in python and relying mostly on grubby[1]. -- 2.25.1