commit:     a7e79e60d0c9c96f2b171dc563991d74fdeb444b
Author:     Jannik Glückert <jannik.glueckert <AT> gmail <DOT> com>
AuthorDate: Sun Jul  7 09:47:44 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul  7 11:07:19 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7e79e60

profiles: fix make.defaults quoting, part 2

quoting is required as per PMS 5.2.4
amends 916cafa15adec6ebe8898b424ca345c8bb907161

Bug: https://bugs.gentoo.org/935685
Signed-off-by: Jannik Glückert <jannik.glueckert <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/37472
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../features/prefix/standalone/kernel-2.6.16+/make.defaults    | 10 +++++-----
 .../features/prefix/standalone/kernel-2.6.32+/make.defaults    |  2 +-
 profiles/features/prefix/standalone/make.defaults              |  2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/profiles/features/prefix/standalone/kernel-2.6.16+/make.defaults 
b/profiles/features/prefix/standalone/kernel-2.6.16+/make.defaults
index 4f6092226447..b98ce4ffc95f 100644
--- a/profiles/features/prefix/standalone/kernel-2.6.16+/make.defaults
+++ b/profiles/features/prefix/standalone/kernel-2.6.16+/make.defaults
@@ -13,10 +13,10 @@
 # utimensat is missing or not reliable until linux-2.6.32.
 # needed by python-3.
 # lutimes requires utimensat
-ac_cv_func_utimensat=no
-ac_cv_func_lutimes=no
+ac_cv_func_utimensat="no"
+ac_cv_func_lutimes="no"
 # pipe2 and dup3 requires >=linux-2.6.27.  Needed by python-3.
-ac_cv_func_pipe2=no
-ac_cv_func_dup3=no
+ac_cv_func_pipe2="no"
+ac_cv_func_dup3="no"
 # epoll_create1 requires >=linux-2.6.27.
-ac_cv_func_epoll_create1=no
+ac_cv_func_epoll_create1="no"

diff --git a/profiles/features/prefix/standalone/kernel-2.6.32+/make.defaults 
b/profiles/features/prefix/standalone/kernel-2.6.32+/make.defaults
index 056f07700a5d..33e139f1ded2 100644
--- a/profiles/features/prefix/standalone/kernel-2.6.32+/make.defaults
+++ b/profiles/features/prefix/standalone/kernel-2.6.32+/make.defaults
@@ -1,4 +1,4 @@
 # This profile is supporting >=linux-2.6.32[a] and <linux-3.2[b].
 
 # only available in glibc-2.26.
-ac_cv_func_reallocarray=no
+ac_cv_func_reallocarray="no"

diff --git a/profiles/features/prefix/standalone/make.defaults 
b/profiles/features/prefix/standalone/make.defaults
index 09b32b13eaaa..a5acafc188fa 100644
--- a/profiles/features/prefix/standalone/make.defaults
+++ b/profiles/features/prefix/standalone/make.defaults
@@ -4,6 +4,6 @@
 # remove when python-3.4 goes end-of-life on 2019-03-16,
 # and when python-2.7 goes end-of-life on 2020-01-01.
 # https://docs.python.org/devguide/#status-of-python-branches
-ac_cv_func_getentropy=no
+ac_cv_func_getentropy="no"
 # Reconsider the stability of Prefix in 2019.
 ACCEPT_KEYWORDS="~${ARCH}"

Reply via email to