diff options
author | Matt Turner <mattst88@gentoo.org> | 2019-09-28 11:10:34 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2019-09-28 11:27:13 -0700 |
commit | b50cb75c31e96e2a8a0116736510c8cf79a9d98d (patch) | |
tree | 2e6ec807ea4f46475a398c118158ee8c7ee56b5f /media-libs/waffle | |
parent | media-libs/waffle: Drop old versions (diff) | |
download | gentoo-b50cb75c31e96e2a8a0116736510c8cf79a9d98d.tar.gz gentoo-b50cb75c31e96e2a8a0116736510c8cf79a9d98d.tar.bz2 gentoo-b50cb75c31e96e2a8a0116736510c8cf79a9d98d.zip |
media-libs/waffle: Fix unquoted variable
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'media-libs/waffle')
-rw-r--r-- | media-libs/waffle/waffle-1.6.0.ebuild | 2 | ||||
-rw-r--r-- | media-libs/waffle/waffle-9999.ebuild | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/media-libs/waffle/waffle-1.6.0.ebuild b/media-libs/waffle/waffle-1.6.0.ebuild index ccfc41d0c8ca..c1eb3cfd333e 100644 --- a/media-libs/waffle/waffle-1.6.0.ebuild +++ b/media-libs/waffle/waffle-1.6.0.ebuild @@ -65,5 +65,5 @@ multilib_src_test() { multilib_src_install() { meson_src_install - rm -rf ${D}/usr/share/doc/waffle1 + rm -rf "${D}"/usr/share/doc/waffle1 } diff --git a/media-libs/waffle/waffle-9999.ebuild b/media-libs/waffle/waffle-9999.ebuild index a7c32a6cf596..56a48b843787 100644 --- a/media-libs/waffle/waffle-9999.ebuild +++ b/media-libs/waffle/waffle-9999.ebuild @@ -65,5 +65,5 @@ multilib_src_test() { multilib_src_install() { meson_src_install - rm -rf ${D}/usr/share/doc/waffle1 + rm -rf "${D}"/usr/share/doc/waffle1 } |