diff options
author | Ilya Tumaykin <itumaykin@gmail.com> | 2015-12-28 07:52:39 +0300 |
---|---|---|
committer | Ilya Tumaykin <itumaykin@gmail.com> | 2015-12-28 15:47:22 +0300 |
commit | 978e1470a38ebb1a75dc7851e93c9e725be781f9 (patch) | |
tree | 81f20e9fc6acf6186bb914ceb0d0421050fbcac2 /media-video | |
parent | media-video/mpv: indent IUSE contents for clarity (diff) | |
download | gentoo-978e1470a38ebb1a75dc7851e93c9e725be781f9.tar.gz gentoo-978e1470a38ebb1a75dc7851e93c9e725be781f9.tar.bz2 gentoo-978e1470a38ebb1a75dc7851e93c9e725be781f9.zip |
media-video/mpv: use simpler chmod call
Suggested by mgorny in PR #511.
Package-Manager: portage-2.2.24
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/mpv/mpv-9999.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild index eea00f13548b..90a60b909c02 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 } |