gnome-base/gnome-shell: fix glob pattern in install phase

`mv "${ED}"/usr/share/doc/s* "${ED}"/usr/share/gtk-doc/html/ || die` moves
everything starting with `s` instead of just `st` and `shell`

Fixes: 2152e3c2b9
Bug: https://bugs.gentoo.org/946902
Signed-off-by: zyxhere💭 <zyx@envs.net>
Part-of: https://codeberg.org/gentoo/gentoo/pulls/1027
Merges: https://codeberg.org/gentoo/gentoo/pulls/1027
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
zyxhere💭
2026-06-01 11:19:40 +05:00
committed by Sam James
parent 4732423866
commit 90b14927c7

View File

@@ -193,7 +193,7 @@ src_install() {
meson_src_install
if use gtk-doc; then
mkdir -p "${ED}"/usr/share/gtk-doc/html || die
mv "${ED}"/usr/share/doc/s* "${ED}"/usr/share/gtk-doc/html/ || die
mv "${ED}"/usr/share/doc/{st,shell} "${ED}"/usr/share/gtk-doc/html/ || die
fi
}