mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
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:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user