139cdd2a16
Update to v5.1.0 qemu OBS-URL: https://build.opensuse.org/request/show/825860 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=557
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
From: Bruce Rogers <brogers@suse.com>
|
|
Date: Thu, 25 Jan 2018 14:16:10 -0700
|
|
Subject: Make installed scripts explicitly python3
|
|
|
|
References: bsc#1077564
|
|
|
|
We want to explicitly reference python3 in the scripts we install.
|
|
|
|
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 95838cbff3f00f1ba097ee032032..d5f6c67bf1f7305461bb536f57b1 100755
|
|
--- a/scripts/analyze-migration.py
|
|
+++ b/scripts/analyze-migration.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python3
|
|
+#!/usr/bin/python3
|
|
#
|
|
# Migration Stream Analyzer
|
|
#
|
|
diff --git a/scripts/vmstate-static-checker.py b/scripts/vmstate-static-checker.py
|
|
index 539ead62b498202fc40b42bff05f..0b7d30eef392cd659dbd722d8bdc 100755
|
|
--- a/scripts/vmstate-static-checker.py
|
|
+++ b/scripts/vmstate-static-checker.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python3
|
|
+#!/usr/bin/python3
|
|
#
|
|
# Compares vmstate information stored in JSON format, obtained from
|
|
# the -dump-vmstate QEMU command.
|