2018-01-25 23:50:30 +00:00
|
|
|
From: Bruce Rogers <brogers@suse.com>
|
|
|
|
Date: Thu, 25 Jan 2018 14:16:10 -0700
|
2019-01-04 21:08:16 +00:00
|
|
|
Subject: Make installed scripts explicitly python3
|
2018-01-25 23:50:30 +00:00
|
|
|
|
2019-09-12 15:54:03 +00:00
|
|
|
References: bsc#1077564
|
|
|
|
|
2019-05-01 22:51:10 +00:00
|
|
|
We want to explicitly reference python3 in the scripts we install.
|
2018-02-08 19:55:31 +00:00
|
|
|
|
2018-01-25 23:50:30 +00:00
|
|
|
Signed-off-by: Bruce Rogers <brogers@suse.com>
|
|
|
|
---
|
|
|
|
scripts/analyze-migration.py | 2 +-
|
|
|
|
scripts/vmstate-static-checker.py | 2 +-
|
|
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/scripts/analyze-migration.py b/scripts/analyze-migration.py
|
2020-08-11 22:53:07 +00:00
|
|
|
index 95838cbff3f00f1ba097ee032032..d5f6c67bf1f7305461bb536f57b1 100755
|
2018-01-25 23:50:30 +00:00
|
|
|
--- a/scripts/analyze-migration.py
|
|
|
|
+++ b/scripts/analyze-migration.py
|
|
|
|
@@ -1,4 +1,4 @@
|
2020-04-29 00:12:31 +00:00
|
|
|
-#!/usr/bin/env python3
|
2018-08-22 14:58:18 +00:00
|
|
|
+#!/usr/bin/python3
|
2018-01-25 23:50:30 +00:00
|
|
|
#
|
|
|
|
# Migration Stream Analyzer
|
|
|
|
#
|
|
|
|
diff --git a/scripts/vmstate-static-checker.py b/scripts/vmstate-static-checker.py
|
2020-04-29 00:12:31 +00:00
|
|
|
index 539ead62b498202fc40b42bff05f..0b7d30eef392cd659dbd722d8bdc 100755
|
2018-01-25 23:50:30 +00:00
|
|
|
--- a/scripts/vmstate-static-checker.py
|
|
|
|
+++ b/scripts/vmstate-static-checker.py
|
|
|
|
@@ -1,4 +1,4 @@
|
2020-04-29 00:12:31 +00:00
|
|
|
-#!/usr/bin/env python3
|
2018-08-22 14:58:18 +00:00
|
|
|
+#!/usr/bin/python3
|
2018-01-25 23:50:30 +00:00
|
|
|
#
|
|
|
|
# Compares vmstate information stored in JSON format, obtained from
|
|
|
|
# the -dump-vmstate QEMU command.
|