2018-01-26 00:50:30 +01:00
|
|
|
From: Bruce Rogers <brogers@suse.com>
|
|
|
|
Date: Thu, 25 Jan 2018 14:16:10 -0700
|
2019-01-04 22:08:16 +01:00
|
|
|
Subject: Make installed scripts explicitly python3
|
2018-01-26 00:50:30 +01:00
|
|
|
|
2018-08-22 16:58:18 +02:00
|
|
|
We want to expliitly reference python3 in the scripts we install.
|
2018-02-08 20:55:31 +01:00
|
|
|
|
|
|
|
[BR: BSC#1077564]
|
2018-01-26 00:50:30 +01: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
|
2018-08-22 16:58:18 +02:00
|
|
|
index 5c2010c917..8786801270 100755
|
2018-01-26 00:50:30 +01:00
|
|
|
--- a/scripts/analyze-migration.py
|
|
|
|
+++ b/scripts/analyze-migration.py
|
|
|
|
@@ -1,4 +1,4 @@
|
|
|
|
-#!/usr/bin/env python
|
2018-08-22 16:58:18 +02:00
|
|
|
+#!/usr/bin/python3
|
2018-01-26 00:50:30 +01:00
|
|
|
#
|
|
|
|
# Migration Stream Analyzer
|
|
|
|
#
|
|
|
|
diff --git a/scripts/vmstate-static-checker.py b/scripts/vmstate-static-checker.py
|
2018-08-22 16:58:18 +02:00
|
|
|
index d3467288dc..2046b1fedd 100755
|
2018-01-26 00:50:30 +01:00
|
|
|
--- a/scripts/vmstate-static-checker.py
|
|
|
|
+++ b/scripts/vmstate-static-checker.py
|
|
|
|
@@ -1,4 +1,4 @@
|
|
|
|
-#!/usr/bin/python
|
2018-08-22 16:58:18 +02:00
|
|
|
+#!/usr/bin/python3
|
2018-01-26 00:50:30 +01:00
|
|
|
#
|
|
|
|
# Compares vmstate information stored in JSON format, obtained from
|
|
|
|
# the -dump-vmstate QEMU command.
|