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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9CB8415817D for ; Tue, 4 Jun 2024 07:36:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5F66E2AC4; Tue, 4 Jun 2024 07:36:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C9FE5E2AC4 for ; Tue, 4 Jun 2024 07:36:24 +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 0635333BED4 for ; Tue, 4 Jun 2024 07:36:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B894119 for ; Tue, 4 Jun 2024 07:36:22 +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: <1717486534.0f0b91303f6a45dda7723444888eb502008f8a0c.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/smlnj/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/smlnj/files/smlnj-110.99.4-shuffle.patch X-VCS-Directories: dev-lang/smlnj/files/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 0f0b91303f6a45dda7723444888eb502008f8a0c X-VCS-Branch: master Date: Tue, 4 Jun 2024 07:36:22 +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: 657a4709-fc26-40e9-a5df-5f678ff0119a X-Archives-Hash: ee61d7d573aa70e7febdfde12f188139 commit: 0f0b91303f6a45dda7723444888eb502008f8a0c Author: Alfredo Tupone gentoo org> AuthorDate: Tue Jun 4 07:35:34 2024 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Tue Jun 4 07:35:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f0b9130 dev-lang/smlnj: fix make Closes: https://bugs.gentoo.org/911785 Signed-off-by: Alfredo Tupone gentoo.org> dev-lang/smlnj/files/smlnj-110.99.4-shuffle.patch | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/dev-lang/smlnj/files/smlnj-110.99.4-shuffle.patch b/dev-lang/smlnj/files/smlnj-110.99.4-shuffle.patch index 0f0d343fc136..9a37a1d859bb 100644 --- a/dev-lang/smlnj/files/smlnj-110.99.4-shuffle.patch +++ b/dev-lang/smlnj/files/smlnj-110.99.4-shuffle.patch @@ -1,12 +1,11 @@ --- a/base/runtime/c-libs/posix-io/makefile 2024-06-04 08:38:20.192453601 +0200 +++ b/base/runtime/c-libs/posix-io/makefile 2024-06-04 08:39:09.504903619 +0200 -@@ -37,7 +37,9 @@ +@@ -37,7 +37,8 @@ lseek.o \ fsync.o -$(LIBRARY) : $(VERSION) $(OBJS) -+$(LIBRARY) : -+ $(MAKE) $(VERSION) ++$(LIBRARY) : $(VERSION) + $(MAKE) $(OBJS) rm -rf $(LIBRARY) $(AR) $(ARFLAGS) $(LIBRARY) $(OBJS) @@ -23,3 +22,15 @@ $(CC) -o $(RUNTIME) $(CFLAGS) $(LDFLAGS) main.o $(OBJS) $(ALL_LIBS) $(LD_LIBS) $(RUNTIME_A): $(VERSION) main.o $(OBJS) $(ALL_LIBS) +--- a/base/runtime/c-libs/posix-signal/makefile 2024-06-04 09:32:49.906560537 +0200 ++++ b/base/runtime/c-libs/posix-signal/makefile 2024-06-04 09:33:12.811305204 +0200 +@@ -21,7 +21,8 @@ + OBJS = posix-signal-lib.o \ + osval.o + +-$(LIBRARY) : $(VERSION) $(OBJS) ++$(LIBRARY) : $(VERSION) ++ $(MAKE) $(OBJS) + rm -rf $(LIBRARY) + $(AR) $(ARFLAGS) $(LIBRARY) $(OBJS) + $(RANLIB) $(LIBRARY)