From 90b14927c70eb34f1317fc66ff3566ea96fc8f7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?zyxhere=F0=9F=92=AD?= Date: Mon, 1 Jun 2026 11:19:40 +0500 Subject: [PATCH] gnome-base/gnome-shell: fix glob pattern in install phase MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `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: 2152e3c2b98d Bug: https://bugs.gentoo.org/946902 Signed-off-by: zyxhere💭 Part-of: https://codeberg.org/gentoo/gentoo/pulls/1027 Merges: https://codeberg.org/gentoo/gentoo/pulls/1027 Signed-off-by: Sam James --- gnome-base/gnome-shell/gnome-shell-49.7.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnome-base/gnome-shell/gnome-shell-49.7.ebuild b/gnome-base/gnome-shell/gnome-shell-49.7.ebuild index b5f7f3c779d76..0e7199b4094f5 100644 --- a/gnome-base/gnome-shell/gnome-shell-49.7.ebuild +++ b/gnome-base/gnome-shell/gnome-shell-49.7.ebuild @@ -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 }