Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/mit-scheme/
Date: Tue, 08 Nov 2022 11:44:31
Message-Id: 1667907582.859d9140a96b785ab1ffa027b94b55864ea18070.xgqt@gentoo
1 commit: 859d9140a96b785ab1ffa027b94b55864ea18070
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 8 11:39:11 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 8 11:39:42 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=859d9140
7
8 dev-scheme/mit-scheme: build microcode first
9
10 Closes: https://bugs.gentoo.org/879901
11 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
12
13 dev-scheme/mit-scheme/mit-scheme-11.2.ebuild | 5 ++++-
14 1 file changed, 4 insertions(+), 1 deletion(-)
15
16 diff --git a/dev-scheme/mit-scheme/mit-scheme-11.2.ebuild b/dev-scheme/mit-scheme/mit-scheme-11.2.ebuild
17 index b2cbd7f95756..3983d9d42651 100644
18 --- a/dev-scheme/mit-scheme/mit-scheme-11.2.ebuild
19 +++ b/dev-scheme/mit-scheme/mit-scheme-11.2.ebuild
20 @@ -41,6 +41,9 @@ src_configure() {
21 }
22
23 src_compile() {
24 + # Compile the "microcode" first, bug #879901
25 + emake -C microcode
26 +
27 # Fails with multiple make-jobs, at least it compiles relatively fast.
28 emake -j1
29 }
30 @@ -53,7 +56,7 @@ src_compile() {
31 # runtime/test-flonum.com
32
33 src_test() {
34 - FAST=y emake check
35 + FAST=y emake check -j1
36 }
37
38 src_install() {