Gentoo Archives: gentoo-commits

From: "Mark Wright (gienah)" <gienah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lisp/sbcl/files: sbcl-1.2.7-verbose-build.patch
Date: Sat, 31 Jan 2015 04:35:18
Message-Id: 20150131043514.A111710BC3@oystercatcher.gentoo.org
1 gienah 15/01/31 04:35:14
2
3 Added: sbcl-1.2.7-verbose-build.patch
4 Log:
5 Fix Bug 526194 - dev-lisp/sbcl-1.2.4 does not respect CFLAGS and LDFLAGS for sbcl 1.2.7. Add arm, sparc solaris and x64 solaris binaries to SRC_URI, untested and no KEYWORDS as I do not have access to this hardware. Add sbcl-1.2.7-verbose-build.patch to echo commands executed by shell scripts during the build.
6
7 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 618E971F)
8
9 Revision Changes Path
10 1.1 dev-lisp/sbcl/files/sbcl-1.2.7-verbose-build.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/sbcl/files/sbcl-1.2.7-verbose-build.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/sbcl/files/sbcl-1.2.7-verbose-build.patch?rev=1.1&content-type=text/plain
14
15 Index: sbcl-1.2.7-verbose-build.patch
16 ===================================================================
17 --- sbcl-1.2.7-orig/make.sh 2015-01-01 06:09:07.000000000 +1100
18 +++ sbcl-1.2.7/make.sh 2015-01-31 13:06:09.652480932 +1100
19 @@ -24,7 +24,7 @@
20 # thing" when run on the target machine, with the minor caveat that
21 # any --xc-host parameter should be suitable for the host machine
22 # instead of the target.
23 -sh make-config.sh "$@" || exit $?
24 +sh -x make-config.sh "$@" || exit $?
25
26 . output/prefix.def
27 . output/build-config
28 @@ -64,11 +64,11 @@
29 # Or, if you can set up the files somewhere shared (with NFS, AFS, or
30 # whatever) between the host machine and the target machine, the basic
31 # procedure above should still work, but you can skip the "copy" steps.
32 -time sh make-host-1.sh
33 -time sh make-target-1.sh
34 -time sh make-host-2.sh
35 -time sh make-target-2.sh
36 -time sh make-target-contrib.sh
37 +time sh -x make-host-1.sh
38 +time sh -x make-target-1.sh
39 +time sh -x make-host-2.sh
40 +time sh -x make-target-2.sh
41 +time sh -x make-target-contrib.sh
42
43 NCONTRIBS=`find contrib -name Makefile -print | wc -l`
44 NPASSED=`find obj/asdf-cache -name test-passed.test-report -print | wc -l`