bd7e079f56
Hopefully we're at least close to the right stuff for handling python2 vs python3 right with these changes. OBS-URL: https://build.opensuse.org/request/show/569754 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=384
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From b55eb09255a4ad8e0053d9cb7c393162d7fc3bae Mon Sep 17 00:00:00 2001
|
|
From: Bruce Rogers <brogers@suse.com>
|
|
Date: Thu, 25 Jan 2018 14:16:10 -0700
|
|
Subject: [PATCH] Make installed scripts explicitly python2
|
|
|
|
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
|
|
index 14553876a2..a512ddc552 100755
|
|
--- 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.
|