Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/gentoo-xcursors/
Date: Thu, 11 Aug 2022 10:55:17
Message-Id: 1660215294.1766729b8d5ca7dd5541387eb8e3fc808efe143f.sam@gentoo
1 commit: 1766729b8d5ca7dd5541387eb8e3fc808efe143f
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 11 10:48:25 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 11 10:54:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1766729b
7
8 x11-themes/gentoo-xcursors: fix UnquotedVariable
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 x11-themes/gentoo-xcursors/gentoo-xcursors-0.3.2-r3.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/x11-themes/gentoo-xcursors/gentoo-xcursors-0.3.2-r3.ebuild b/x11-themes/gentoo-xcursors/gentoo-xcursors-0.3.2-r3.ebuild
16 index a891f268b288..17f253e4ff91 100644
17 --- a/x11-themes/gentoo-xcursors/gentoo-xcursors-0.3.2-r3.ebuild
18 +++ b/x11-themes/gentoo-xcursors/gentoo-xcursors-0.3.2-r3.ebuild
19 @@ -17,8 +17,8 @@ src_install() {
20 doins -r cursors/*
21
22 # Add symlinks in Gentoo-specific location for backwards compatibility, #848606
23 - mkdir -p ${ED}/usr/share/cursors/xorg-x11 || die
24 - cd ${ED}/usr/share/cursors/xorg-x11 || die
25 + mkdir -p "${ED}"/usr/share/cursors/xorg-x11 || die
26 + cd "${ED}"/usr/share/cursors/xorg-x11 || die
27 for cursorset in ../../icons/*; do
28 dosym ${cursorset} /usr/share/cursors/xorg-x11/${cursorset##*/}
29 done