508ceb61e3
Update to v3.0.0 version OBS-URL: https://build.opensuse.org/request/show/630954 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=424
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
From 6d5e50164b7b72337af2ab9332e75c9bb0cc8b01 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 python3
|
|
|
|
We want to expliitly reference python3 in the scripts we install.
|
|
|
|
[BR: BSC#1077564]
|
|
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 5c2010c917..8786801270 100755
|
|
--- a/scripts/analyze-migration.py
|
|
+++ b/scripts/analyze-migration.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/python3
|
|
#
|
|
# Migration Stream Analyzer
|
|
#
|
|
diff --git a/scripts/vmstate-static-checker.py b/scripts/vmstate-static-checker.py
|
|
index d3467288dc..2046b1fedd 100755
|
|
--- a/scripts/vmstate-static-checker.py
|
|
+++ b/scripts/vmstate-static-checker.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/python
|
|
+#!/usr/bin/python3
|
|
#
|
|
# Compares vmstate information stored in JSON format, obtained from
|
|
# the -dump-vmstate QEMU command.
|