diff options
| author | Joshua Lock <joshua.g.lock@intel.com> | 2016-12-14 21:13:04 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-16 10:23:23 +0000 |
| commit | c4e2c59088765d1f1de7ec57cde91980f887c2ff (patch) | |
| tree | a2fda8ac5916fb59a711e9220c2177008cca9347 /meta/recipes-core/glibc | |
| parent | d5e67725ac11e3296cad104470931ffa16824b90 (diff) | |
| download | poky-c4e2c59088765d1f1de7ec57cde91980f887c2ff.tar.gz | |
meta: remove True option to getVar calls
getVar() now defaults to expanding by default, thus remove the True
option from getVar() calls with a regex search and replace.
Search made with the following regex: getVar ?\(( ?[^,()]*), True\)
(From OE-Core rev: 7c552996597faaee2fbee185b250c0ee30ea3b5f)
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/glibc')
| -rw-r--r-- | meta/recipes-core/glibc/glibc-ld.inc | 6 | ||||
| -rw-r--r-- | meta/recipes-core/glibc/glibc-locale.inc | 8 | ||||
| -rw-r--r-- | meta/recipes-core/glibc/glibc-package.inc | 4 | ||||
| -rw-r--r-- | meta/recipes-core/glibc/glibc.inc | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/meta/recipes-core/glibc/glibc-ld.inc b/meta/recipes-core/glibc/glibc-ld.inc index e2e24741f3..547c235eee 100644 --- a/meta/recipes-core/glibc/glibc-ld.inc +++ b/meta/recipes-core/glibc/glibc-ld.inc | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | def ld_append_if_tune_exists(d, infos, dict): | 1 | def ld_append_if_tune_exists(d, infos, dict): |
| 2 | tune = d.getVar("DEFAULTTUNE", True) or "" | 2 | tune = d.getVar("DEFAULTTUNE") or "" |
| 3 | libdir = d.getVar("base_libdir", True) or "" | 3 | libdir = d.getVar("base_libdir") or "" |
| 4 | if tune in dict: | 4 | if tune in dict: |
| 5 | infos['ldconfig'].add('{"' + libdir + '/' + dict[tune][0] + '",' + dict[tune][1] + ' }') | 5 | infos['ldconfig'].add('{"' + libdir + '/' + dict[tune][0] + '",' + dict[tune][1] + ' }') |
| 6 | infos['lddrewrite'].add(libdir+'/'+dict[tune][0]) | 6 | infos['lddrewrite'].add(libdir+'/'+dict[tune][0]) |
| @@ -32,7 +32,7 @@ def glibc_dl_info(d): | |||
| 32 | localdata.setVar("DEFAULTTUNE", original_tune) | 32 | localdata.setVar("DEFAULTTUNE", original_tune) |
| 33 | ld_append_if_tune_exists(localdata, infos, ld_info_all) | 33 | ld_append_if_tune_exists(localdata, infos, ld_info_all) |
| 34 | 34 | ||
| 35 | variants = d.getVar("MULTILIB_VARIANTS", True) or "" | 35 | variants = d.getVar("MULTILIB_VARIANTS") or "" |
| 36 | for item in variants.split(): | 36 | for item in variants.split(): |
| 37 | localdata = bb.data.createCopy(d) | 37 | localdata = bb.data.createCopy(d) |
| 38 | overrides = localdata.getVar("OVERRIDES", False) + ":virtclass-multilib-" + item | 38 | overrides = localdata.getVar("OVERRIDES", False) + ":virtclass-multilib-" + item |
diff --git a/meta/recipes-core/glibc/glibc-locale.inc b/meta/recipes-core/glibc/glibc-locale.inc index 0a7adfcc83..11bd612fff 100644 --- a/meta/recipes-core/glibc/glibc-locale.inc +++ b/meta/recipes-core/glibc/glibc-locale.inc | |||
| @@ -41,22 +41,22 @@ PACKAGES_DYNAMIC = "^locale-base-.* \ | |||
| 41 | # Create a glibc-binaries package | 41 | # Create a glibc-binaries package |
| 42 | ALLOW_EMPTY_${BPN}-binaries = "1" | 42 | ALLOW_EMPTY_${BPN}-binaries = "1" |
| 43 | PACKAGES += "${BPN}-binaries" | 43 | PACKAGES += "${BPN}-binaries" |
| 44 | RRECOMMENDS_${BPN}-binaries = "${@" ".join([p for p in d.getVar('PACKAGES', True).split() if p.find("glibc-binary") != -1])}" | 44 | RRECOMMENDS_${BPN}-binaries = "${@" ".join([p for p in d.getVar('PACKAGES').split() if p.find("glibc-binary") != -1])}" |
| 45 | 45 | ||
| 46 | # Create a glibc-charmaps package | 46 | # Create a glibc-charmaps package |
| 47 | ALLOW_EMPTY_${BPN}-charmaps = "1" | 47 | ALLOW_EMPTY_${BPN}-charmaps = "1" |
| 48 | PACKAGES += "${BPN}-charmaps" | 48 | PACKAGES += "${BPN}-charmaps" |
| 49 | RRECOMMENDS_${BPN}-charmaps = "${@" ".join([p for p in d.getVar('PACKAGES', True).split() if p.find("glibc-charmap") != -1])}" | 49 | RRECOMMENDS_${BPN}-charmaps = "${@" ".join([p for p in d.getVar('PACKAGES').split() if p.find("glibc-charmap") != -1])}" |
| 50 | 50 | ||
| 51 | # Create a glibc-gconvs package | 51 | # Create a glibc-gconvs package |
| 52 | ALLOW_EMPTY_${BPN}-gconvs = "1" | 52 | ALLOW_EMPTY_${BPN}-gconvs = "1" |
| 53 | PACKAGES += "${BPN}-gconvs" | 53 | PACKAGES += "${BPN}-gconvs" |
| 54 | RRECOMMENDS_${BPN}-gconvs = "${@" ".join([p for p in d.getVar('PACKAGES', True).split() if p.find("glibc-gconv") != -1])}" | 54 | RRECOMMENDS_${BPN}-gconvs = "${@" ".join([p for p in d.getVar('PACKAGES').split() if p.find("glibc-gconv") != -1])}" |
| 55 | 55 | ||
| 56 | # Create a glibc-localedatas package | 56 | # Create a glibc-localedatas package |
| 57 | ALLOW_EMPTY_${BPN}-localedatas = "1" | 57 | ALLOW_EMPTY_${BPN}-localedatas = "1" |
| 58 | PACKAGES += "${BPN}-localedatas" | 58 | PACKAGES += "${BPN}-localedatas" |
| 59 | RRECOMMENDS_${BPN}-localedatas = "${@" ".join([p for p in d.getVar('PACKAGES', True).split() if p.find("glibc-localedata") != -1])}" | 59 | RRECOMMENDS_${BPN}-localedatas = "${@" ".join([p for p in d.getVar('PACKAGES').split() if p.find("glibc-localedata") != -1])}" |
| 60 | 60 | ||
| 61 | DESCRIPTION_localedef = "glibc: compile locale definition files" | 61 | DESCRIPTION_localedef = "glibc: compile locale definition files" |
| 62 | 62 | ||
diff --git a/meta/recipes-core/glibc/glibc-package.inc b/meta/recipes-core/glibc/glibc-package.inc index bad642449a..481a00e125 100644 --- a/meta/recipes-core/glibc/glibc-package.inc +++ b/meta/recipes-core/glibc/glibc-package.inc | |||
| @@ -8,10 +8,10 @@ | |||
| 8 | 8 | ||
| 9 | python __anonymous () { | 9 | python __anonymous () { |
| 10 | import bb, re | 10 | import bb, re |
| 11 | uc_os = (re.match('.*uclibc*', d.getVar('TARGET_OS', True)) != None) | 11 | uc_os = (re.match('.*uclibc*', d.getVar('TARGET_OS')) != None) |
| 12 | if uc_os: | 12 | if uc_os: |
| 13 | raise bb.parse.SkipPackage("incompatible with target %s" % | 13 | raise bb.parse.SkipPackage("incompatible with target %s" % |
| 14 | d.getVar('TARGET_OS', True)) | 14 | d.getVar('TARGET_OS')) |
| 15 | } | 15 | } |
| 16 | 16 | ||
| 17 | # Set this to zero if you don't want ldconfig in the output package | 17 | # Set this to zero if you don't want ldconfig in the output package |
diff --git a/meta/recipes-core/glibc/glibc.inc b/meta/recipes-core/glibc/glibc.inc index 7bae0e9554..823e60e771 100644 --- a/meta/recipes-core/glibc/glibc.inc +++ b/meta/recipes-core/glibc/glibc.inc | |||
| @@ -10,13 +10,13 @@ TOOLCHAIN_OPTIONS = " --sysroot=${STAGING_DIR_TCBOOTSTRAP}" | |||
| 10 | 10 | ||
| 11 | python () { | 11 | python () { |
| 12 | opt_effective = "-O" | 12 | opt_effective = "-O" |
| 13 | for opt in d.getVar('SELECTED_OPTIMIZATION', True).split(): | 13 | for opt in d.getVar('SELECTED_OPTIMIZATION').split(): |
| 14 | if opt in ("-O0", "-O", "-O1", "-O2", "-O3", "-Os"): | 14 | if opt in ("-O0", "-O", "-O1", "-O2", "-O3", "-Os"): |
| 15 | opt_effective = opt | 15 | opt_effective = opt |
| 16 | if opt_effective == "-O0": | 16 | if opt_effective == "-O0": |
| 17 | bb.fatal("%s can't be built with %s, try -O1 instead" % (d.getVar('PN', True), opt_effective)) | 17 | bb.fatal("%s can't be built with %s, try -O1 instead" % (d.getVar('PN'), opt_effective)) |
| 18 | if opt_effective in ("-O", "-O1", "-Os"): | 18 | if opt_effective in ("-O", "-O1", "-Os"): |
| 19 | bb.note("%s doesn't build cleanly with %s, adding -Wno-error to SELECTED_OPTIMIZATION" % (d.getVar('PN', True), opt_effective)) | 19 | bb.note("%s doesn't build cleanly with %s, adding -Wno-error to SELECTED_OPTIMIZATION" % (d.getVar('PN'), opt_effective)) |
| 20 | d.appendVar("SELECTED_OPTIMIZATION", " -Wno-error") | 20 | d.appendVar("SELECTED_OPTIMIZATION", " -Wno-error") |
| 21 | } | 21 | } |
| 22 | 22 | ||
