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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A29B315808B for ; Sat, 19 Mar 2022 11:57:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7266BE089C; Sat, 19 Mar 2022 11:57:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 68B0EE089C for ; Sat, 19 Mar 2022 11:57:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 39D9034365F for ; Sat, 19 Mar 2022 11:57:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 588BF30C for ; Sat, 19 Mar 2022 11:57:07 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1647691015.277a2fc803a93dfec9e65ef5c79ef60d6dddf5ac.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/smlnj/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/smlnj/smlnj-110.99.2.ebuild X-VCS-Directories: dev-lang/smlnj/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 277a2fc803a93dfec9e65ef5c79ef60d6dddf5ac X-VCS-Branch: master Date: Sat, 19 Mar 2022 11:57:07 +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: 1eb95afe-b2de-4106-b6a3-62b895c8c525 X-Archives-Hash: 48b2bd63f31e4ad63a2dcbdd38e73eb3 commit: 277a2fc803a93dfec9e65ef5c79ef60d6dddf5ac Author: Maciej Barć gentoo org> AuthorDate: Sat Mar 19 11:56:34 2022 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sat Mar 19 11:56:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=277a2fc8 dev-lang/smlnj: fix asdl autoconf script Closes: https://bugs.gentoo.org/835555 Signed-off-by: Maciej Barć gentoo.org> dev-lang/smlnj/smlnj-110.99.2.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-lang/smlnj/smlnj-110.99.2.ebuild b/dev-lang/smlnj/smlnj-110.99.2.ebuild index 4ecbd1aa8d77..9186f5e6aefb 100644 --- a/dev-lang/smlnj/smlnj-110.99.2.ebuild +++ b/dev-lang/smlnj/smlnj-110.99.2.ebuild @@ -78,6 +78,9 @@ src_unpack() { mkdir base || die # without this unpacking runtime will fail ./config/unpack "${S}" runtime || die + + # Unpack asdl to fix autoconf linker check + unpack "${S}"/asdl.tgz } src_prepare() { @@ -97,6 +100,7 @@ src_prepare() { -i base/runtime/objs/makefile || die sed -i "s|nm |$(tc-getNM) |g" config/chk-global-names.sh || die + sed -i "/^AC_PATH_PROG/s|\[ld\]|\[$(tc-getLD)\]|" asdl/configure.ac || die } src_compile() {