mirror of
https://git.yoctoproject.org/poky
synced 2026-03-03 22:09:39 +01:00
Drop backport 0001-girepository-introspection-correctly-install-.gir-fi.patch (From OE-Core rev: 68ac84d6f4aa4f9342b53814b08a4a888f006a2c) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
44 lines
1.4 KiB
Diff
44 lines
1.4 KiB
Diff
From 20f64ba4b48e46cf238dc638dc3305036358122b Mon Sep 17 00:00:00 2001
|
|
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
|
Date: Tue, 3 Oct 2017 10:45:55 +0300
|
|
Subject: [PATCH] Do not hardcode python path into various tools
|
|
|
|
Upstream-Status: Inappropriate [oe-core specific]
|
|
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
|
---
|
|
gio/gdbus-2.0/codegen/gdbus-codegen.in | 2 +-
|
|
gobject/glib-genmarshal.in | 2 +-
|
|
gobject/glib-mkenums.in | 2 +-
|
|
3 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/gio/gdbus-2.0/codegen/gdbus-codegen.in b/gio/gdbus-2.0/codegen/gdbus-codegen.in
|
|
index 67d3675..4e92a7a 100755
|
|
--- a/gio/gdbus-2.0/codegen/gdbus-codegen.in
|
|
+++ b/gio/gdbus-2.0/codegen/gdbus-codegen.in
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env @PYTHON@
|
|
+#!/usr/bin/env python3
|
|
|
|
# GDBus - GLib D-Bus Library
|
|
#
|
|
diff --git a/gobject/glib-genmarshal.in b/gobject/glib-genmarshal.in
|
|
index aa5af43..56e8e2e 100755
|
|
--- a/gobject/glib-genmarshal.in
|
|
+++ b/gobject/glib-genmarshal.in
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env @PYTHON@
|
|
+#!/usr/bin/env python3
|
|
|
|
# pylint: disable=too-many-lines, missing-docstring, invalid-name
|
|
|
|
diff --git a/gobject/glib-mkenums.in b/gobject/glib-mkenums.in
|
|
index e10b910..4b619f8 100755
|
|
--- a/gobject/glib-mkenums.in
|
|
+++ b/gobject/glib-mkenums.in
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env @PYTHON@
|
|
+#!/usr/bin/env python3
|
|
|
|
# If the code below looks horrible and unpythonic, do not panic.
|
|
#
|