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 38A00138330 for ; Thu, 1 Sep 2016 21:38:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 794CE21C1F4; Thu, 1 Sep 2016 21:38:08 +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 B9AD621C1E9 for ; Thu, 1 Sep 2016 21:38:07 +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 A5A1F34087F for ; Thu, 1 Sep 2016 21:38:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7F8B2471 for ; Thu, 1 Sep 2016 21:38:02 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1472765868.0de9f1327427e331d186ea3ff835d97191efd3de.bicatali@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-astronomy/montage/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-astronomy/montage/montage-4.1.ebuild X-VCS-Directories: sci-astronomy/montage/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: 0de9f1327427e331d186ea3ff835d97191efd3de X-VCS-Branch: master Date: Thu, 1 Sep 2016 21:38:02 +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: cb782e1e-f696-449b-b5cd-58d698a9f1fe X-Archives-Hash: 3ca0833842575943c746d789c5a276ba commit: 0de9f1327427e331d186ea3ff835d97191efd3de Author: Sébastien Fabbro gentoo org> AuthorDate: Thu Sep 1 21:37:24 2016 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Thu Sep 1 21:37:48 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0de9f132 sci-astronomy/montage: fix sed issue when mpi flag is set (bug #586412) Package-Manager: portage-2.3.0 sci-astronomy/montage/montage-4.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-astronomy/montage/montage-4.1.ebuild b/sci-astronomy/montage/montage-4.1.ebuild index 37e1207..a887d9e 100644 --- a/sci-astronomy/montage/montage-4.1.ebuild +++ b/sci-astronomy/montage/montage-4.1.ebuild @@ -52,7 +52,7 @@ src_prepare() { if use mpi; then sed -e 's:# MPICC:MPICC:' \ -e 's:# BINS:BINS:' \ - -i Montage/Makefile || die + -i Montage/Makefile.* || die fi }