Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/hardened/linux/musl/mips/, profiles/hardened/linux/musl/x86/, ...
Date: Mon, 26 Oct 2015 03:11:39
Message-Id: 1445829452.89c6a4527100d8327d11ab32e5eb042d8b92af09.blueness@gentoo
1 commit: 89c6a4527100d8327d11ab32e5eb042d8b92af09
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 26 03:17:32 2015 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 26 03:17:32 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89c6a452
7
8 profiles: quote some variables in hardened/linux/musl
9
10 profiles/hardened/linux/musl/amd64/make.defaults | 2 +-
11 profiles/hardened/linux/musl/amd64/x32/make.defaults | 2 +-
12 profiles/hardened/linux/musl/mips/make.defaults | 2 +-
13 profiles/hardened/linux/musl/mips/mipsel/make.defaults | 2 +-
14 profiles/hardened/linux/musl/ppc/make.defaults | 2 +-
15 profiles/hardened/linux/musl/x86/make.defaults | 2 +-
16 6 files changed, 6 insertions(+), 6 deletions(-)
17
18 diff --git a/profiles/hardened/linux/musl/amd64/make.defaults b/profiles/hardened/linux/musl/amd64/make.defaults
19 index ee429b6..d178cea 100644
20 --- a/profiles/hardened/linux/musl/amd64/make.defaults
21 +++ b/profiles/hardened/linux/musl/amd64/make.defaults
22 @@ -16,7 +16,7 @@ FCFLAGS="${CFLAGS}"
23 ABI="amd64"
24 DEFAULT_ABI="amd64"
25 MULTILIB_ABIS="amd64"
26 -CHOST_amd64=${CHOST}
27 +CHOST_amd64="${CHOST}"
28 LIBDIR_amd64="lib"
29 IUSE_IMPLICIT="abi_x86_64"
30
31
32 diff --git a/profiles/hardened/linux/musl/amd64/x32/make.defaults b/profiles/hardened/linux/musl/amd64/x32/make.defaults
33 index cf5a092..41eab4e 100644
34 --- a/profiles/hardened/linux/musl/amd64/x32/make.defaults
35 +++ b/profiles/hardened/linux/musl/amd64/x32/make.defaults
36 @@ -9,6 +9,6 @@ CHOST="x86_64-gentoo-linux-muslx32"
37 ABI="x32"
38 DEFAULT_ABI="x32"
39 MULTILIB_ABIS="x32"
40 -CHOST_x32=${CHOST}
41 +CHOST_x32="${CHOST}"
42 LIBDIR_x32="lib"
43 IUSE_IMPLICIT="abi_x86_x32"
44
45 diff --git a/profiles/hardened/linux/musl/mips/make.defaults b/profiles/hardened/linux/musl/mips/make.defaults
46 index 04c30a6..eb625b9 100644
47 --- a/profiles/hardened/linux/musl/mips/make.defaults
48 +++ b/profiles/hardened/linux/musl/mips/make.defaults
49 @@ -16,6 +16,6 @@ FCFLAGS="${CFLAGS}"
50 ABI="o32"
51 DEFAULT_ABI="o32"
52 MULTILIB_ABIS="o32"
53 -CHOST_o32=${CHOST}
54 +CHOST_o32="${CHOST}"
55 LIBDIR_o32="lib"
56 IUSE_IMPLICIT="abi_mips_o32"
57
58 diff --git a/profiles/hardened/linux/musl/mips/mipsel/make.defaults b/profiles/hardened/linux/musl/mips/mipsel/make.defaults
59 index f24306b..4245502 100644
60 --- a/profiles/hardened/linux/musl/mips/mipsel/make.defaults
61 +++ b/profiles/hardened/linux/musl/mips/mipsel/make.defaults
62 @@ -3,7 +3,7 @@
63 # $Id$
64
65 CHOST="mipsel-gentoo-linux-musl"
66 -CHOST_o32=${CHOST}
67 +CHOST_o32="${CHOST}"
68
69 # Disable sandbox because its currently broken on mipsel-musl
70 FEATURES="-sandbox"
71
72 diff --git a/profiles/hardened/linux/musl/ppc/make.defaults b/profiles/hardened/linux/musl/ppc/make.defaults
73 index fb93ead..e644798 100644
74 --- a/profiles/hardened/linux/musl/ppc/make.defaults
75 +++ b/profiles/hardened/linux/musl/ppc/make.defaults
76 @@ -14,6 +14,6 @@ FCFLAGS="${CFLAGS}"
77 ABI="ppc"
78 DEFAULT_ABI="ppc"
79 MULTILIB_ABIS="ppc"
80 -CHOST_ppc=${CHOST}
81 +CHOST_ppc="${CHOST}"
82 LIBDIR_ppc="lib"
83 IUSE_IMPLICIT="abi_ppc_32"
84
85 diff --git a/profiles/hardened/linux/musl/x86/make.defaults b/profiles/hardened/linux/musl/x86/make.defaults
86 index 9007af3..4ee8308 100644
87 --- a/profiles/hardened/linux/musl/x86/make.defaults
88 +++ b/profiles/hardened/linux/musl/x86/make.defaults
89 @@ -16,7 +16,7 @@ FCFLAGS="${CFLAGS}"
90 ABI="x86"
91 DEFAULT_ABI="x86"
92 MULTILIB_ABIS="x86"
93 -CHOST_x86=${CHOST}
94 +CHOST_x86="${CHOST}"
95 LIBDIR_x86="lib"
96 IUSE_IMPLICIT="abi_x86_32"