profiles: fix make.defaults quoting, part 2

quoting is required as per PMS 5.2.4
amends 916cafa15a

Bug: https://bugs.gentoo.org/935685
Signed-off-by: Jannik Glückert <jannik.glueckert@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/37472
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Jannik Glückert
2024-07-07 11:47:44 +02:00
committed by Sam James
parent 74cb42c5d3
commit a7e79e60d0
3 changed files with 7 additions and 7 deletions

View File

@@ -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"

View File

@@ -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"

View File

@@ -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}"