diff mbox series

[meta-gnome,5/5] meta-gnome: drop ${PYTHON_PN}

Message ID f7b4df564c10f34a6449ca2532636e1d5f2149d7.1708370337.git.tim.orling@konsulko.com
State Accepted, archived
Headers show
Series [meta-python,1/5] meta-python: drop ${PYTHON_PN} | expand

Commit Message

Tim Orling Feb. 19, 2024, 7:23 p.m. UTC
python 2 is long unsupported, so we no longer need this variable

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
 meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.3.bb b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.3.bb
index 1dd043ec82..96fcba7f49 100644
--- a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.3.bb
+++ b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.3.bb
@@ -50,7 +50,7 @@  EXTRA_OEMESON = " \
 do_install:append() {
     # fix shebangs
     for tool in `find ${D}${bindir} -name '*-tool'`; do
-        sed -i 's:#!${PYTHON}:#!${bindir}/${PYTHON_PN}:' $tool
+        sed -i 's:#!${PYTHON}:#!${bindir}/python3:' $tool
     done
 }