diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2015-10-25 23:17:32 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-10-25 23:17:32 -0400 |
commit | 89c6a4527100d8327d11ab32e5eb042d8b92af09 (patch) | |
tree | 814e84716b14e20dc27abc18a10300c6aed191fe | |
parent | b25e71c8ac306b925de9bca11bdb9c6cf622c03a (diff) | |
download | gentoo-89c6a4527100d8327d11ab32e5eb042d8b92af09.tar.gz gentoo-89c6a4527100d8327d11ab32e5eb042d8b92af09.tar.xz |
profiles: quote some variables in hardened/linux/musl
6 files changed, 6 insertions, 6 deletions
diff --git a/profiles/hardened/linux/musl/amd64/make.defaults b/profiles/hardened/linux/musl/amd64/make.defaults index ee429b6bfd5..d178ceab376 100644 --- a/profiles/hardened/linux/musl/amd64/make.defaults +++ b/profiles/hardened/linux/musl/amd64/make.defaults @@ -16,7 +16,7 @@ FCFLAGS="${CFLAGS}" ABI="amd64" DEFAULT_ABI="amd64" MULTILIB_ABIS="amd64" -CHOST_amd64=${CHOST} +CHOST_amd64="${CHOST}" LIBDIR_amd64="lib" IUSE_IMPLICIT="abi_x86_64" diff --git a/profiles/hardened/linux/musl/amd64/x32/make.defaults b/profiles/hardened/linux/musl/amd64/x32/make.defaults index cf5a0925409..41eab4ef9c4 100644 --- a/profiles/hardened/linux/musl/amd64/x32/make.defaults +++ b/profiles/hardened/linux/musl/amd64/x32/make.defaults @@ -9,6 +9,6 @@ CHOST="x86_64-gentoo-linux-muslx32" ABI="x32" DEFAULT_ABI="x32" MULTILIB_ABIS="x32" -CHOST_x32=${CHOST} +CHOST_x32="${CHOST}" LIBDIR_x32="lib" IUSE_IMPLICIT="abi_x86_x32" diff --git a/profiles/hardened/linux/musl/mips/make.defaults b/profiles/hardened/linux/musl/mips/make.defaults index 04c30a65e93..eb625b93126 100644 --- a/profiles/hardened/linux/musl/mips/make.defaults +++ b/profiles/hardened/linux/musl/mips/make.defaults @@ -16,6 +16,6 @@ FCFLAGS="${CFLAGS}" ABI="o32" DEFAULT_ABI="o32" MULTILIB_ABIS="o32" -CHOST_o32=${CHOST} +CHOST_o32="${CHOST}" LIBDIR_o32="lib" IUSE_IMPLICIT="abi_mips_o32" diff --git a/profiles/hardened/linux/musl/mips/mipsel/make.defaults b/profiles/hardened/linux/musl/mips/mipsel/make.defaults index f24306b9244..42455023951 100644 --- a/profiles/hardened/linux/musl/mips/mipsel/make.defaults +++ b/profiles/hardened/linux/musl/mips/mipsel/make.defaults @@ -3,7 +3,7 @@ # $Id$ CHOST="mipsel-gentoo-linux-musl" -CHOST_o32=${CHOST} +CHOST_o32="${CHOST}" # Disable sandbox because its currently broken on mipsel-musl FEATURES="-sandbox" diff --git a/profiles/hardened/linux/musl/ppc/make.defaults b/profiles/hardened/linux/musl/ppc/make.defaults index fb93eadb01b..e6447984114 100644 --- a/profiles/hardened/linux/musl/ppc/make.defaults +++ b/profiles/hardened/linux/musl/ppc/make.defaults @@ -14,6 +14,6 @@ FCFLAGS="${CFLAGS}" ABI="ppc" DEFAULT_ABI="ppc" MULTILIB_ABIS="ppc" -CHOST_ppc=${CHOST} +CHOST_ppc="${CHOST}" LIBDIR_ppc="lib" IUSE_IMPLICIT="abi_ppc_32" diff --git a/profiles/hardened/linux/musl/x86/make.defaults b/profiles/hardened/linux/musl/x86/make.defaults index 9007af355c6..4ee83085aad 100644 --- a/profiles/hardened/linux/musl/x86/make.defaults +++ b/profiles/hardened/linux/musl/x86/make.defaults @@ -16,7 +16,7 @@ FCFLAGS="${CFLAGS}" ABI="x86" DEFAULT_ABI="x86" MULTILIB_ABIS="x86" -CHOST_x86=${CHOST} +CHOST_x86="${CHOST}" LIBDIR_x86="lib" IUSE_IMPLICIT="abi_x86_32" |