diff options
author | Tim Orling <ticotimo@gmail.com> | 2024-02-19 20:10:28 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-02-19 23:22:25 -0800 |
commit | 635260e2f2ef3ab0189a244a925a55cec1bc9079 (patch) | |
tree | 7fc5ba9dc9ec78e8586218eb19baa8f3c6dbca3b /meta-gnome | |
parent | 87a83e3a90446b68f3e7ab13a6f95fa5f49fdd69 (diff) | |
download | meta-openembedded-635260e2f2ef3ab0189a244a925a55cec1bc9079.tar.gz |
meta-gnome: drop ${PYTHON_PN}
python 2 is long unsupported, so we no longer need this variable
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-gnome')
-rw-r--r-- | meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.4.bb | 2 |
1 files changed, 1 insertions, 1 deletions
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 = " \ | |||
50 | do_install:append() { | 50 | do_install:append() { |
51 | # fix shebangs | 51 | # fix shebangs |
52 | for tool in `find ${D}${bindir} -name '*-tool'`; do | 52 | for tool in `find ${D}${bindir} -name '*-tool'`; do |
53 | sed -i 's:#!${PYTHON}:#!${bindir}/${PYTHON_PN}:' $tool | 53 | sed -i 's:#!${PYTHON}:#!${bindir}/python3:' $tool |
54 | done | 54 | done |
55 | } | 55 | } |
56 | 56 | ||