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 02DF9138252 for ; Thu, 12 May 2016 02:50:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77587E07F0; Thu, 12 May 2016 02:50:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 21EDBE07DB for ; Thu, 12 May 2016 02:50:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EE4EE33BE93 for ; Thu, 12 May 2016 02:50:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31AF6336 for ; Thu, 12 May 2016 02:50:11 +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: <1463021313.2eda90f65ecad8ecd05bcc7a74cb21a98c9319af.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/classified-ads/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/classified-ads/classified-ads-0.10.ebuild X-VCS-Directories: net-p2p/classified-ads/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 2eda90f65ecad8ecd05bcc7a74cb21a98c9319af X-VCS-Branch: master Date: Thu, 12 May 2016 02:50:11 +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: d0a13247-4d86-485f-ba74-8c7fdae9d112 X-Archives-Hash: 04b699401813db12de478d89d3f2c165 commit: 2eda90f65ecad8ecd05bcc7a74cb21a98c9319af Author: Ian Delaney gentoo org> AuthorDate: Thu May 12 02:48:33 2016 +0000 Commit: Ian Delaney gentoo org> CommitDate: Thu May 12 02:48:33 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eda90f6 net-p2p/classified-ads: add missed '>> /dev/null'to pushd popd Package-Manager: portage-2.2.28 net-p2p/classified-ads/classified-ads-0.10.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-p2p/classified-ads/classified-ads-0.10.ebuild b/net-p2p/classified-ads/classified-ads-0.10.ebuild index 1a49071..9c0d7ae 100644 --- a/net-p2p/classified-ads/classified-ads-0.10.ebuild +++ b/net-p2p/classified-ads/classified-ads-0.10.ebuild @@ -61,12 +61,12 @@ src_configure() { src_compile() { emake if use doc; then - pushd doc || die + pushd doc >> /dev/null || die doxygen || die popd >> /dev/null || die fi if use test; then - pushd test || die + pushd test >> /dev/null || die emake popd >> /dev/null || die fi