Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Mon, 12 Sep 2022 19:14:42
Message-Id: 1663010071.56323cb8fa8dd874eb6284aba75f055610d2fb04.arthurzam@gentoo
1 commit: 56323cb8fa8dd874eb6284aba75f055610d2fb04
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 3 11:45:40 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 12 19:14:31 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56323cb8
7
8 webapp.eclass: fix UnquotedVariable of D
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 eclass/webapp.eclass | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass
16 index 1efe4e66b6a9..3bc177dc3e78 100644
17 --- a/eclass/webapp.eclass
18 +++ b/eclass/webapp.eclass
19 @@ -201,7 +201,7 @@ webapp_configfile() {
20 my_file="$(webapp_strip_cwd "${my_file}")"
21
22 elog "(config) ${my_file}"
23 - echo "${my_file}" >> ${D}/${WA_CONFIGLIST}
24 + echo "${my_file}" >> "${D}/${WA_CONFIGLIST}"
25 done
26 }