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 63AF3138334 for ; Tue, 29 Oct 2019 21:13:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A37CBE087F; Tue, 29 Oct 2019 21:13:03 +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 8B36AE087F for ; Tue, 29 Oct 2019 21:13:03 +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 801E634C543 for ; Tue, 29 Oct 2019 21:13:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8B5D773 for ; Tue, 29 Oct 2019 21:13:00 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1572383562.4ded99a3df1b8cdf0aa8dc29b8589f4817e12e55.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/psmt2-frontend/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/psmt2-frontend/psmt2-frontend-0.2.ebuild X-VCS-Directories: sci-mathematics/psmt2-frontend/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 4ded99a3df1b8cdf0aa8dc29b8589f4817e12e55 X-VCS-Branch: master Date: Tue, 29 Oct 2019 21:13:00 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d390f2a2-d380-49a0-bd48-7c0c911b8eda X-Archives-Hash: 51d0c5146e01ba1dba8f1e8c010202b0 commit: 4ded99a3df1b8cdf0aa8dc29b8589f4817e12e55 Author: Tupone Alfredo gentoo org> AuthorDate: Tue Oct 29 21:11:58 2019 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Tue Oct 29 21:12:42 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ded99a3 sci-mathematics/psmt2-frontend: fix make install Closes: https://bugs.gentoo.org/698858 Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Alfredo Tupone gentoo.org> sci-mathematics/psmt2-frontend/psmt2-frontend-0.2.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sci-mathematics/psmt2-frontend/psmt2-frontend-0.2.ebuild b/sci-mathematics/psmt2-frontend/psmt2-frontend-0.2.ebuild index a7bedc5e96d..5f6f9e6f4f3 100644 --- a/sci-mathematics/psmt2-frontend/psmt2-frontend-0.2.ebuild +++ b/sci-mathematics/psmt2-frontend/psmt2-frontend-0.2.ebuild @@ -22,6 +22,9 @@ PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) src_prepare() { default mv configure.{in,ac} + sed -i \ + -e "s:configure.in:configure.ac:g" \ + Makefile.in || die eautoreconf }