summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core')
-rw-r--r--meta/recipes-core/glibc/glibc_2.26.bb6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-core/glibc/glibc_2.26.bb b/meta/recipes-core/glibc/glibc_2.26.bb
index ff3197bb23..7eb56b328a 100644
--- a/meta/recipes-core/glibc/glibc_2.26.bb
+++ b/meta/recipes-core/glibc/glibc_2.26.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSES;md5=e9a558e243b36d3209f380deb394b213 \
5 file://posix/rxspencer/COPYRIGHT;md5=dc5485bb394a13b2332ec1c785f5d83a \ 5 file://posix/rxspencer/COPYRIGHT;md5=dc5485bb394a13b2332ec1c785f5d83a \
6 file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c" 6 file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c"
7 7
8DEPENDS += "gperf-native" 8DEPENDS += "gperf-native bison-native"
9 9
10SRCREV ?= "77f921dac17c5fa99bd9e926d926c327982895f7" 10SRCREV ?= "77f921dac17c5fa99bd9e926d926c327982895f7"
11 11
@@ -106,6 +106,10 @@ do_configure () {
106# version check and doesn't really help with anything 106# version check and doesn't really help with anything
107 (cd ${S} && gnu-configize) || die "failure in running gnu-configize" 107 (cd ${S} && gnu-configize) || die "failure in running gnu-configize"
108 find ${S} -name "configure" | xargs touch 108 find ${S} -name "configure" | xargs touch
109 # "plural.c" may or may not get regenerated from "plural.y" so we
110 # touch "plural.y" to make sure it does. (This should not be needed
111 # for glibc version 2.26+)
112 find ${S}/intl -name "plural.y" | xargs touch
109 CPPFLAGS="" oe_runconf 113 CPPFLAGS="" oe_runconf
110} 114}
111 115