Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/waffle/
Date: Sat, 28 Sep 2019 18:27:33
Message-Id: 1569695233.b50cb75c31e96e2a8a0116736510c8cf79a9d98d.mattst88@gentoo
1 commit: b50cb75c31e96e2a8a0116736510c8cf79a9d98d
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 28 18:10:34 2019 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 28 18:27:13 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b50cb75c
7
8 media-libs/waffle: Fix unquoted variable
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 media-libs/waffle/waffle-1.6.0.ebuild | 2 +-
13 media-libs/waffle/waffle-9999.ebuild | 2 +-
14 2 files changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/media-libs/waffle/waffle-1.6.0.ebuild b/media-libs/waffle/waffle-1.6.0.ebuild
17 index ccfc41d0c8c..c1eb3cfd333 100644
18 --- a/media-libs/waffle/waffle-1.6.0.ebuild
19 +++ b/media-libs/waffle/waffle-1.6.0.ebuild
20 @@ -65,5 +65,5 @@ multilib_src_test() {
21 multilib_src_install() {
22 meson_src_install
23
24 - rm -rf ${D}/usr/share/doc/waffle1
25 + rm -rf "${D}"/usr/share/doc/waffle1
26 }
27
28 diff --git a/media-libs/waffle/waffle-9999.ebuild b/media-libs/waffle/waffle-9999.ebuild
29 index a7c32a6cf59..56a48b84378 100644
30 --- a/media-libs/waffle/waffle-9999.ebuild
31 +++ b/media-libs/waffle/waffle-9999.ebuild
32 @@ -65,5 +65,5 @@ multilib_src_test() {
33 multilib_src_install() {
34 meson_src_install
35
36 - rm -rf ${D}/usr/share/doc/waffle1
37 + rm -rf "${D}"/usr/share/doc/waffle1
38 }