From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1052904-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 E84C1138335
	for <garchives@archives.gentoo.org>; Thu, 18 Oct 2018 12:39:51 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 01E56E09C6;
	Thu, 18 Oct 2018 12:39:51 +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 C8657E09C6
	for <gentoo-commits@lists.gentoo.org>; Thu, 18 Oct 2018 12:39:50 +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 9C9DE335CFC
	for <gentoo-commits@lists.gentoo.org>; Thu, 18 Oct 2018 12:39:49 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B27643D
	for <gentoo-commits@lists.gentoo.org>; Thu, 18 Oct 2018 12:39:48 +0000 (UTC)
From: "Mikhail Pukhlikov" <cynede@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, "Mikhail Pukhlikov" <cynede@gentoo.org>
Message-ID: <1539864571.02a46d0b8bbe2ef630d541816d5a81f32ccc96df.cynede@gentoo>
Subject: [gentoo-commits] proj/dotnet:master commit in: net-irc/smuxi/
X-VCS-Repository: proj/dotnet
X-VCS-Files: net-irc/smuxi/smuxi-9999.ebuild
X-VCS-Directories: net-irc/smuxi/
X-VCS-Committer: cynede
X-VCS-Committer-Name: Mikhail Pukhlikov
X-VCS-Revision: 02a46d0b8bbe2ef630d541816d5a81f32ccc96df
X-VCS-Branch: master
Date: Thu, 18 Oct 2018 12:39:48 +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: b3b2bfd9-441e-460d-a146-023a82c71585
X-Archives-Hash: 5fd18d68e9205ed796cad13373622858

commit:     02a46d0b8bbe2ef630d541816d5a81f32ccc96df
Author:     Martin Holzhauer <martin <AT> holzhauer <DOT> eu>
AuthorDate: Thu Oct 18 12:09:31 2018 +0000
Commit:     Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org>
CommitDate: Thu Oct 18 12:09:31 2018 +0000
URL:        https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=02a46d0b

replaced pipe operator with an OR

 net-irc/smuxi/smuxi-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/smuxi/smuxi-9999.ebuild b/net-irc/smuxi/smuxi-9999.ebuild
index c432d3a..5d18bba 100644
--- a/net-irc/smuxi/smuxi-9999.ebuild
+++ b/net-irc/smuxi/smuxi-9999.ebuild
@@ -47,7 +47,7 @@ src_prepare() {
 
 	# https://github.com/meebey/smuxi/issues/86
 	# eautoreconf
-	./autogen.sh | die "Could not run autogen.sh"
+	./autogen.sh || die "Could not run autogen.sh"
 }
 
 src_configure() {