diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-03 11:21:22 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-05 10:23:53 -0800 |
commit | b1aeaa8b0dcf27ef8dcd87279901c6f5817d9e94 (patch) | |
tree | 62b315fdc05e03677922a0161fdc7a39e2985466 /meta/recipes-core/busybox | |
parent | 22f0df2aa737bda1ae3bce862ee5ceba5b2d204b (diff) | |
download | poky-b1aeaa8b0dcf27ef8dcd87279901c6f5817d9e94.tar.gz |
meta: Replace bb.data.expand(xxx, d) -> d.expand(xxx)
sed \
-e 's:bb.data.\(expand([^,()]*\), *\([^) ]*\) *):\2.\1):g' \
-i `grep -ril bb.data.expand *`
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/busybox')
-rw-r--r-- | meta/recipes-core/busybox/busybox.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc index 7aa131cf69..ec76ad2902 100644 --- a/meta/recipes-core/busybox/busybox.inc +++ b/meta/recipes-core/busybox/busybox.inc | |||
@@ -82,7 +82,7 @@ python () { | |||
82 | if "${OE_FEATURES}": | 82 | if "${OE_FEATURES}": |
83 | d.setVar('configmangle_append', | 83 | d.setVar('configmangle_append', |
84 | "/^### DISTRO FEATURES$/a\\\n%s\n\n" % | 84 | "/^### DISTRO FEATURES$/a\\\n%s\n\n" % |
85 | ("\\n".join((bb.data.expand("${OE_FEATURES}", d).split("\n"))))) | 85 | ("\\n".join((d.expand("${OE_FEATURES}").split("\n"))))) |
86 | d.setVar('configmangle_append', | 86 | d.setVar('configmangle_append', |
87 | "/^### CROSS$/a\\\n%s\n" % | 87 | "/^### CROSS$/a\\\n%s\n" % |
88 | ("\\n".join(["CONFIG_CROSS_COMPILER_PREFIX=\"${TARGET_PREFIX}\"", | 88 | ("\\n".join(["CONFIG_CROSS_COMPILER_PREFIX=\"${TARGET_PREFIX}\"", |