From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 3FF4E139694 for ; Sun, 30 Jul 2017 05:46:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80661E0EB8; Sun, 30 Jul 2017 05:46:42 +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 5D1ACE0EB8 for ; Sun, 30 Jul 2017 05:46:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 74C38341A92 for ; Sun, 30 Jul 2017 05:46:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDA8D74C4 for ; Sun, 30 Jul 2017 05:46:39 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1501393595.5b9b2f7b7a7ddd267b5021d1099a33332bbda438.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/clang/clang-4.0.1.ebuild X-VCS-Directories: sys-devel/clang/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5b9b2f7b7a7ddd267b5021d1099a33332bbda438 X-VCS-Branch: master Date: Sun, 30 Jul 2017 05:46:39 +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: 234474a5-f426-4c64-b20d-78d421cb5c90 X-Archives-Hash: a4ff02c660e6b3cd9733a44774135a2b commit: 5b9b2f7b7a7ddd267b5021d1099a33332bbda438 Author: Michał Górny gentoo org> AuthorDate: Sun Jul 30 05:45:10 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 30 05:46:35 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b9b2f7b sys-devel/clang: Fix mv accidentally catching manpages, #626424 sys-devel/clang/clang-4.0.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-devel/clang/clang-4.0.1.ebuild b/sys-devel/clang/clang-4.0.1.ebuild index 1eeb3835d1e..9bc810a7d53 100644 --- a/sys-devel/clang/clang-4.0.1.ebuild +++ b/sys-devel/clang/clang-4.0.1.ebuild @@ -83,9 +83,9 @@ src_unpack() { default - mv clang-tools-extra-* "${S}"/tools/extra || die + mv clang-tools-extra-*.src "${S}"/tools/extra || die if use test; then - mv llvm-* "${WORKDIR}"/llvm || die + mv llvm-*.src "${WORKDIR}"/llvm || die fi }