summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/glibc/glibc/option-groups.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/glibc/glibc/option-groups.patch')
-rw-r--r--meta/recipes-core/glibc/glibc/option-groups.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-core/glibc/glibc/option-groups.patch b/meta/recipes-core/glibc/glibc/option-groups.patch
index 693bd2fbb8..198be73524 100644
--- a/meta/recipes-core/glibc/glibc/option-groups.patch
+++ b/meta/recipes-core/glibc/glibc/option-groups.patch
@@ -1358,8 +1358,8 @@ Index: git/scripts/option-groups.awk
1358+ print " It defines macros that indicate which EGLIBC option groups were" 1358+ print " It defines macros that indicate which EGLIBC option groups were"
1359+ print " configured in 'option-groups.config' when this C library was" 1359+ print " configured in 'option-groups.config' when this C library was"
1360+ print " built. For each option group named OPTION_foo, it #defines" 1360+ print " built. For each option group named OPTION_foo, it #defines"
1361+ print " __OPTION_foo to be 1 if the group is enabled, or leaves that" 1361+ print " __OPTION_foo to be 1 if the group is enabled, or #defines that"
1362+ print " symbol undefined if the group is disabled. */" 1362+ print " symbol to be 0 if the group is disabled. */"
1363+ print "" 1363+ print ""
1364+ print "#ifndef __GNU_OPTION_GROUPS_H" 1364+ print "#ifndef __GNU_OPTION_GROUPS_H"
1365+ print "#define __GNU_OPTION_GROUPS_H" 1365+ print "#define __GNU_OPTION_GROUPS_H"
@@ -1379,7 +1379,7 @@ Index: git/scripts/option-groups.awk
1379+ if (vars[var] == "y") 1379+ if (vars[var] == "y")
1380+ print "#define __" var " 1" 1380+ print "#define __" var " 1"
1381+ else if (vars[var] == "n") 1381+ else if (vars[var] == "n")
1382+ print "/* #undef __" var " */" 1382+ print "#define __" var " 0"
1383+ else if (vars[var] ~ /^[0-9]+/ || 1383+ else if (vars[var] ~ /^[0-9]+/ ||
1384+ vars[var] ~ /^0x[0-9aAbBcCdDeEfF]+/ || 1384+ vars[var] ~ /^0x[0-9aAbBcCdDeEfF]+/ ||
1385+ vars[var] ~ /^\"/) 1385+ vars[var] ~ /^\"/)