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-graphics/pango | |
| 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-graphics/pango')
| -rw-r--r-- | meta/recipes-graphics/pango/pango.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/pango/pango.inc b/meta/recipes-graphics/pango/pango.inc index 8b36d04c03..a2d5dc3a12 100644 --- a/meta/recipes-graphics/pango/pango.inc +++ b/meta/recipes-graphics/pango/pango.inc | |||
| @@ -52,7 +52,7 @@ fi | |||
| 52 | python populate_packages_prepend () { | 52 | python populate_packages_prepend () { |
| 53 | prologue = d.getVar("postinst_prologue", True) | 53 | prologue = d.getVar("postinst_prologue", True) |
| 54 | 54 | ||
| 55 | modules_root = bb.data.expand('${libdir}/pango/${LIBV}/modules', d) | 55 | modules_root = d.expand('${libdir}/pango/${LIBV}/modules') |
| 56 | 56 | ||
| 57 | do_split_packages(d, modules_root, '^pango-(.*)\.so$', 'pango-module-%s', 'Pango module %s', prologue + 'pango-querymodules > /etc/pango/pango.modules') | 57 | do_split_packages(d, modules_root, '^pango-(.*)\.so$', 'pango-module-%s', 'Pango module %s', prologue + 'pango-querymodules > /etc/pango/pango.modules') |
| 58 | } | 58 | } |
