[PATCH v4 2/6] scripts/qemu-gdb: Use Python 3 interpreter

Philippe Mathieu-Daudé posted 6 patches 5 years, 9 months ago
[PATCH v4 2/6] scripts/qemu-gdb: Use Python 3 interpreter
Posted by Philippe Mathieu-Daudé 5 years, 9 months ago
From: Philippe Mathieu-Daudé <f4bug@amsat.org>

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 scripts/qemu-gdb.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/qemu-gdb.py b/scripts/qemu-gdb.py
index f2a305c42e..e0bfa7b5a4 100644
--- a/scripts/qemu-gdb.py
+++ b/scripts/qemu-gdb.py
@@ -1,5 +1,5 @@
-#!/usr/bin/python
-
+#!/usr/bin/env python3
+#
 # GDB debugging support
 #
 # Copyright 2012 Red Hat, Inc. and/or its affiliates
-- 
2.21.3


Re: [PATCH v4 2/6] scripts/qemu-gdb: Use Python 3 interpreter
Posted by John Snow 5 years, 9 months ago
On 5/12/20 6:32 AM, Philippe Mathieu-Daudé wrote:
> From: Philippe Mathieu-Daudé <f4bug@amsat.org>
> 
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

Reviewed-by: John Snow <jsnow@redhat.com>