From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1113539-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 57243138334 for <garchives@archives.gentoo.org>; Sat, 28 Sep 2019 18:27:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 205C4E0924; Sat, 28 Sep 2019 18:27:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 079FBE0924 for <gentoo-commits@lists.gentoo.org>; Sat, 28 Sep 2019 18:27:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0C98B34B69C for <gentoo-commits@lists.gentoo.org>; Sat, 28 Sep 2019 18:27:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9654E802 for <gentoo-commits@lists.gentoo.org>; Sat, 28 Sep 2019 18:27:26 +0000 (UTC) From: "Matt Turner" <mattst88@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" <mattst88@gentoo.org> Message-ID: <1569695233.b50cb75c31e96e2a8a0116736510c8cf79a9d98d.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/waffle/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/waffle/waffle-1.6.0.ebuild media-libs/waffle/waffle-9999.ebuild X-VCS-Directories: media-libs/waffle/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: b50cb75c31e96e2a8a0116736510c8cf79a9d98d X-VCS-Branch: master Date: Sat, 28 Sep 2019 18:27:26 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8b77f82f-2bce-4608-a880-4423853d146c X-Archives-Hash: 8091951d1b8d87ba07bf750a14cff972 commit: b50cb75c31e96e2a8a0116736510c8cf79a9d98d Author: Matt Turner <mattst88 <AT> gentoo <DOT> org> AuthorDate: Sat Sep 28 18:10:34 2019 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Sat Sep 28 18:27:13 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b50cb75c media-libs/waffle: Fix unquoted variable Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> media-libs/waffle/waffle-1.6.0.ebuild | 2 +- 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 ccfc41d0c8c..c1eb3cfd333 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 a7c32a6cf59..56a48b84378 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 }