From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-839506-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A74EB13888F for <garchives@archives.gentoo.org>; Sun, 11 Oct 2015 00:34:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9745EE0848; Sun, 11 Oct 2015 00:34:49 +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 3325AE0848 for <gentoo-commits@lists.gentoo.org>; Sun, 11 Oct 2015 00:34:48 +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 CEDF033BE93 for <gentoo-commits@lists.gentoo.org>; Sun, 11 Oct 2015 00:34:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3F8C126 for <gentoo-commits@lists.gentoo.org>; Sun, 11 Oct 2015 00:34:41 +0000 (UTC) From: "Ulrich Müller" <ulm@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, "Ulrich Müller" <ulm@gentoo.org> Message-ID: <1444523618.34b4dc46aaa1299ead32a028cad15ad968b31ca9.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgit2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgit2/libgit2-0.23.3.ebuild X-VCS-Directories: dev-libs/libgit2/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 34b4dc46aaa1299ead32a028cad15ad968b31ca9 X-VCS-Branch: master Date: Sun, 11 Oct 2015 00:34:41 +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-Archives-Salt: c408bdab-ed72-4072-8ac6-ee38c3c221a5 X-Archives-Hash: 912b60e6cde9e38a77c6831ff7407157 commit: 34b4dc46aaa1299ead32a028cad15ad968b31ca9 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sun Oct 11 00:32:51 2015 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sun Oct 11 00:33:38 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34b4dc46 dev-libs/libgit2: [QA] Fix die command in src_install. Bash does not recognise the U+00A0 (aka no-break space) character as whitespace, therefore " die" gets parsed as a token but is of course not a valid command. Package-Manager: portage-2.2.23 dev-libs/libgit2/libgit2-0.23.3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/libgit2/libgit2-0.23.3.ebuild b/dev-libs/libgit2/libgit2-0.23.3.ebuild index 3b1c958..ab7043e 100644 --- a/dev-libs/libgit2/libgit2-0.23.3.ebuild +++ b/dev-libs/libgit2/libgit2-0.23.3.ebuild @@ -69,7 +69,7 @@ src_install() { cmake-utils_src_install if use examples ; then - find examples -name .gitignore -delete || die + find examples -name .gitignore -delete || die dodoc -r examples docompress -x /usr/share/doc/${PF}/examples fi