diff mbox series

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

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

Commit Message

Tim Orling Feb. 20, 2024, 4:10 a.m. UTC
python 2 is long unsupported, so we no longer need this variable

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
Changes in v2:
Rebase on top of master-next

 meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.4.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.4.bb b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.4.bb
index 7d7d508c11..9512f0b584 100644
--- a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.4.bb
+++ b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.4.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
 }