From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1F0621384B4 for ; Mon, 28 Dec 2015 14:07:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E20A21C003; Mon, 28 Dec 2015 14:07:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C43D2E07A7 for ; Mon, 28 Dec 2015 14:07:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EBCD633FEDE for ; Mon, 28 Dec 2015 14:07:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72AF6D01 for ; Mon, 28 Dec 2015 13:27:47 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1451306842.978e1470a38ebb1a75dc7851e93c9e725be781f9.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mpv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/mpv/mpv-9999.ebuild X-VCS-Directories: media-video/mpv/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 978e1470a38ebb1a75dc7851e93c9e725be781f9 X-VCS-Branch: master Date: Mon, 28 Dec 2015 13:27:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 3d4ea66c-bfab-43f6-b2ef-da693463ffe3 X-Archives-Hash: bbc2047e7d4e4bba665885499cdc4788 commit: 978e1470a38ebb1a75dc7851e93c9e725be781f9 Author: Ilya Tumaykin gmail com> AuthorDate: Mon Dec 28 04:52:39 2015 +0000 Commit: Ian Delaney gentoo org> CommitDate: Mon Dec 28 12:47:22 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=978e1470 media-video/mpv: use simpler chmod call Suggested by mgorny in PR #511. Package-Manager: portage-2.2.24 media-video/mpv/mpv-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild index eea00f1..90a60b9 100644 --- a/media-video/mpv/mpv-9999.ebuild +++ b/media-video/mpv/mpv-9999.ebuild @@ -152,7 +152,7 @@ pkg_pretend() { src_prepare() { cp "${DISTDIR}/waf-${WAF_PV}" "${S}"/waf || die - chmod 0755 "${S}"/waf || die + chmod +x "${S}"/waf || die epatch_user }