2018-08-03 18:05:13 +02:00
|
|
|
From a2df489a5073322fd0eec514e59cde6e7788e845 Mon Sep 17 00:00:00 2001
|
2018-01-26 00:50:30 +01:00
|
|
|
From: Bruce Rogers <brogers@suse.com>
|
|
|
|
Date: Thu, 25 Jan 2018 14:16:10 -0700
|
|
|
|
Subject: [PATCH] Make installed scripts explicitly python2
|
|
|
|
|
2018-02-08 20:55:31 +01:00
|
|
|
This is one step towards having our python support be explicitly
|
|
|
|
either python2 or python3.
|
|
|
|
|
|
|
|
[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-05-01 17:20:58 +02:00
|
|
|
index 88ff4adb30..519b600161 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
|
|
|
|
+#!/usr/bin/python2
|
|
|
|
#
|
|
|
|
# Migration Stream Analyzer
|
|
|
|
#
|
|
|
|
diff --git a/scripts/vmstate-static-checker.py b/scripts/vmstate-static-checker.py
|
|
|
|
index bcef7ee28e..45ae2df2cf 100755
|
|
|
|
--- a/scripts/vmstate-static-checker.py
|
|
|
|
+++ b/scripts/vmstate-static-checker.py
|
|
|
|
@@ -1,4 +1,4 @@
|
|
|
|
-#!/usr/bin/python
|
|
|
|
+#!/usr/bin/python2
|
|
|
|
#
|
|
|
|
# Compares vmstate information stored in JSON format, obtained from
|
|
|
|
# the -dump-vmstate QEMU command.
|