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 E7EAB13835A for ; Tue, 12 Jan 2021 10:01:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A8ADE0887; Tue, 12 Jan 2021 10:01:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E7CA0E0887 for ; Tue, 12 Jan 2021 10:01:42 +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 4E096340E0F for ; Tue, 12 Jan 2021 10:01:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA0C846B for ; Tue, 12 Jan 2021 10:01:38 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1610445695.219efe93ddac271ee78c2aa5a87d7d93b6e055fc.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-nds/openldap/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-nds/openldap/openldap-2.4.56.ebuild X-VCS-Directories: net-nds/openldap/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 219efe93ddac271ee78c2aa5a87d7d93b6e055fc X-VCS-Branch: master Date: Tue, 12 Jan 2021 10:01:38 +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: 26ce01ed-3527-4dd3-9ecf-8671abf72ec3 X-Archives-Hash: 79cdac41fcd381fa4fd24d28dc52bd8c commit: 219efe93ddac271ee78c2aa5a87d7d93b6e055fc Author: Lars Wendler gentoo org> AuthorDate: Tue Jan 12 10:01:02 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Jan 12 10:01:35 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=219efe93 net-nds/openldap: Fixed build with sys-devel/autoconf:2.70 Thanks-to: Arfrever Frehtes Taifersar Arahesis Apache.Org> Closes: https://bugs.gentoo.org/765043 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Lars Wendler gentoo.org> net-nds/openldap/openldap-2.4.56.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net-nds/openldap/openldap-2.4.56.ebuild b/net-nds/openldap/openldap-2.4.56.ebuild index 229f43df9b2..9aad8b8fec3 100644 --- a/net-nds/openldap/openldap-2.4.56.ebuild +++ b/net-nds/openldap/openldap-2.4.56.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -379,6 +379,8 @@ src_prepare() { -e 's|/bin/sh|/bin/bash|g' \ -i tests/scripts/* || die "sed failed" + # Required for autoconf-2.70 #765043 + sed 's@^AM_INIT_AUTOMAKE.*@AC_PROG_MAKE_SET@' -i configure.in || die AT_NOEAUTOMAKE=yes eautoreconf }