diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-14 22:21:37 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-16 15:35:07 +0000 |
commit | e1b639bd5e7985440dc7a0848457b4cb6a369e92 (patch) | |
tree | 287949994701e48b14bf9d042390e7ec0f634f42 /meta/recipes-gnome/gobject-introspection | |
parent | cd4b8a8553f9d551af27941910cf4d3405ecb7b0 (diff) | |
download | poky-e1b639bd5e7985440dc7a0848457b4cb6a369e92.tar.gz |
meta: Fix python code quoting issues
python 3.8 will be stricter about python quoting. Fix up several misquoted
expressions and fix Deprecation warnings like:
Var <do_compile>:1: DeprecationWarning: invalid escape sequence \$
(From OE-Core rev: 3ba6cee84de89f8eb200e4c93d446f6cdeeaa4be)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/gobject-introspection')
-rw-r--r-- | meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.2.bb b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.2.bb index 242899accc..d00f3bd344 100644 --- a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.2.bb +++ b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.2.bb | |||
@@ -76,7 +76,7 @@ do_configure_prepend_class-native() { | |||
76 | do_configure_prepend_class-target() { | 76 | do_configure_prepend_class-target() { |
77 | # Write out a qemu wrapper that will be given to gi-scanner so that it | 77 | # Write out a qemu wrapper that will be given to gi-scanner so that it |
78 | # can run target helper binaries through that. | 78 | # can run target helper binaries through that. |
79 | qemu_binary="${@qemu_wrapper_cmdline(d, '$STAGING_DIR_HOST', ['\$GIR_EXTRA_LIBS_PATH','.libs','$STAGING_DIR_HOST/${libdir}','$STAGING_DIR_HOST/${base_libdir}'])}" | 79 | qemu_binary="${@qemu_wrapper_cmdline(d, '$STAGING_DIR_HOST', ['\\$GIR_EXTRA_LIBS_PATH','.libs','$STAGING_DIR_HOST/${libdir}','$STAGING_DIR_HOST/${base_libdir}'])}" |
80 | cat > ${B}/g-ir-scanner-qemuwrapper << EOF | 80 | cat > ${B}/g-ir-scanner-qemuwrapper << EOF |
81 | #!/bin/sh | 81 | #!/bin/sh |
82 | # Use a modules directory which doesn't exist so we don't load random things | 82 | # Use a modules directory which doesn't exist so we don't load random things |