commit: 916cafa15adec6ebe8898b424ca345c8bb907161 Author: Jannik Glückert <jannik.glueckert <AT> gmail <DOT> com> AuthorDate: Sun Jul 7 01:35:47 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Jul 7 02:07:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=916cafa1
profiles: fix make.defaults quoting quoting is required as per PMS 5.2.4 Bug: https://bugs.gentoo.org/935685 Signed-off-by: Jannik Glückert <jannik.glueckert <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/37464 Signed-off-by: Sam James <sam <AT> gentoo.org> profiles/features/hardened/make.defaults | 2 +- profiles/features/llvm/make.defaults | 2 +- profiles/features/split-usr/make.defaults | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/profiles/features/hardened/make.defaults b/profiles/features/hardened/make.defaults index 8843d9bdb2c8..431f75d3915d 100644 --- a/profiles/features/hardened/make.defaults +++ b/profiles/features/hardened/make.defaults @@ -12,7 +12,7 @@ USE="hardened pic xtpax -jit -orc" # This variable can be leveraged in ebuilds for pkg_postinst messages that # indicate said package is, say, configured in a way that defeats the purpose # of running hardened. -PROFILE_IS_HARDENED=1 +PROFILE_IS_HARDENED="1" # We set the default markings to none PAX_MARKINGS="none" diff --git a/profiles/features/llvm/make.defaults b/profiles/features/llvm/make.defaults index defd200ce9d1..f36599c1e300 100644 --- a/profiles/features/llvm/make.defaults +++ b/profiles/features/llvm/make.defaults @@ -31,7 +31,7 @@ ADDR2LINE="llvm-addr2line" # Rust needs this to build some crates (like uutils) # https://github.com/rust-lang/rust/blob/master/compiler/rustc_llvm/build.rs -LLVM_USE_LIBCXX=1 +LLVM_USE_LIBCXX="1" # https://github.com/rust-lang/cc-rs#c-support # https://github.com/rust-lang/cc-rs/blob/main/src/lib.rs CXXSTDLIB="c++" diff --git a/profiles/features/split-usr/make.defaults b/profiles/features/split-usr/make.defaults index 9d42deee4999..3f95c0a0e32a 100644 --- a/profiles/features/split-usr/make.defaults +++ b/profiles/features/split-usr/make.defaults @@ -1,2 +1,2 @@ # Set an environment variable so we can easily test for the profile type -PROFILE_23_USRTYPE=split-usr +PROFILE_23_USRTYPE="split-usr"
