diff options
Diffstat (limited to 'meta/recipes-extended/bash/bash_5.2.37.bb')
-rw-r--r-- | meta/recipes-extended/bash/bash_5.2.37.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-extended/bash/bash_5.2.37.bb b/meta/recipes-extended/bash/bash_5.2.37.bb new file mode 100644 index 0000000000..2c0645cbd9 --- /dev/null +++ b/meta/recipes-extended/bash/bash_5.2.37.bb | |||
@@ -0,0 +1,28 @@ | |||
1 | require bash.inc | ||
2 | |||
3 | # GPL-2.0-or-later (< 4.0), GPL-3.0-or-later (>= 4.0) | ||
4 | LICENSE = "GPL-3.0-or-later" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
6 | |||
7 | SRC_URI = "${GNU_MIRROR}/bash/${BP}.tar.gz;name=tarball \ | ||
8 | file://mkbuiltins_have_stringize.patch \ | ||
9 | file://build-tests.patch \ | ||
10 | file://test-output.patch \ | ||
11 | file://run-ptest \ | ||
12 | file://run-bash-ptests \ | ||
13 | file://fix-run-builtins.patch \ | ||
14 | file://0001-changes-to-SIGINT-handler-while-waiting-for-a-child-.patch \ | ||
15 | file://fix-filesubst-errexit.patch \ | ||
16 | " | ||
17 | |||
18 | SRC_URI[tarball.sha256sum] = "9599b22ecd1d5787ad7d3b7bf0c59f312b3396d1e281175dd1f8a4014da621ff" | ||
19 | |||
20 | DEBUG_OPTIMIZATION:append:armv4 = " ${@bb.utils.contains('TUNE_CCARGS', '-mthumb', '-fomit-frame-pointer', '', d)}" | ||
21 | DEBUG_OPTIMIZATION:append:armv5 = " ${@bb.utils.contains('TUNE_CCARGS', '-mthumb', '-fomit-frame-pointer', '', d)}" | ||
22 | |||
23 | CFLAGS += "-std=gnu17" | ||
24 | # mkbuiltins.c is built with native toolchain and needs gnu17 as well: | ||
25 | # http://errors.yoctoproject.org/Errors/Details/853016/ | ||
26 | BUILD_CFLAGS += "-std=gnu17" | ||
27 | |||
28 | BBCLASSEXTEND = "nativesdk" | ||