summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-core/eglibc/eglibc.inc5
-rw-r--r--meta/recipes-core/eglibc/eglibc_2.16.bb2
2 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-core/eglibc/eglibc.inc b/meta/recipes-core/eglibc/eglibc.inc
index cae955d523..e1ec6b2b8c 100644
--- a/meta/recipes-core/eglibc/eglibc.inc
+++ b/meta/recipes-core/eglibc/eglibc.inc
@@ -51,6 +51,11 @@ EXTRA_OEMAKE[vardepsexclude] += "EGLIBCPARALLELISM"
51EXTRA_OEMAKE += "${EGLIBCPARALLELISM}" 51EXTRA_OEMAKE += "${EGLIBCPARALLELISM}"
52PARALLEL_MAKE = "" 52PARALLEL_MAKE = ""
53 53
54# eglibc make-syscalls.sh has a number of issues with /bin/dash and
55# it's output which make calls via the SHELL also has issues, so
56# ensure make uses /bin/bash
57EXTRA_OEMAKE += "SHELL=/bin/bash"
58
54OE_FEATURES = "${@features_to_eglibc_settings(d)}" 59OE_FEATURES = "${@features_to_eglibc_settings(d)}"
55do_configure_prepend() { 60do_configure_prepend() {
56 sed -e "s#@BASH@#/bin/sh#" -i ${S}/elf/ldd.bash.in 61 sed -e "s#@BASH@#/bin/sh#" -i ${S}/elf/ldd.bash.in
diff --git a/meta/recipes-core/eglibc/eglibc_2.16.bb b/meta/recipes-core/eglibc/eglibc_2.16.bb
index 32b03645e5..78bf9bedaf 100644
--- a/meta/recipes-core/eglibc/eglibc_2.16.bb
+++ b/meta/recipes-core/eglibc/eglibc_2.16.bb
@@ -3,7 +3,7 @@ require eglibc.inc
3SRCREV = "20393" 3SRCREV = "20393"
4 4
5DEPENDS += "gperf-native kconfig-frontends-native" 5DEPENDS += "gperf-native kconfig-frontends-native"
6PR = "r14" 6PR = "r15"
7PR_append = "+svnr${SRCPV}" 7PR_append = "+svnr${SRCPV}"
8 8
9EGLIBC_BRANCH="eglibc-2_16" 9EGLIBC_BRANCH="eglibc-2_16"