diff options
Diffstat (limited to 'meta/recipes-connectivity/connman')
-rw-r--r-- | meta/recipes-connectivity/connman/connman.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/connman/connman.inc b/meta/recipes-connectivity/connman/connman.inc index 0ba375137d..0a117e44a4 100644 --- a/meta/recipes-connectivity/connman/connman.inc +++ b/meta/recipes-connectivity/connman/connman.inc | |||
@@ -133,14 +133,14 @@ python populate_packages_prepend() { | |||
133 | add_rdepends(bb, d, file, pkg, depmap, multilib_prefix, False) | 133 | add_rdepends(bb, d, file, pkg, depmap, multilib_prefix, False) |
134 | plugin_dir = d.expand('${libdir}/connman/plugins/') | 134 | plugin_dir = d.expand('${libdir}/connman/plugins/') |
135 | plugin_name = d.expand('${PN}-plugin-%s') | 135 | plugin_name = d.expand('${PN}-plugin-%s') |
136 | do_split_packages(d, plugin_dir, '^(.*).so$', plugin_name, \ | 136 | do_split_packages(d, plugin_dir, r'^(.*).so$', plugin_name, \ |
137 | '${PN} plugin for %s', extra_depends='', hook=hook, prepend=True ) | 137 | '${PN} plugin for %s', extra_depends='', hook=hook, prepend=True ) |
138 | 138 | ||
139 | hook = lambda file,pkg,x,y,z: \ | 139 | hook = lambda file,pkg,x,y,z: \ |
140 | add_rdepends(bb, d, file, pkg, depmap, multilib_prefix, True) | 140 | add_rdepends(bb, d, file, pkg, depmap, multilib_prefix, True) |
141 | plugin_dir = d.expand('${libdir}/connman/plugins-vpn/') | 141 | plugin_dir = d.expand('${libdir}/connman/plugins-vpn/') |
142 | plugin_name = d.expand('${PN}-plugin-vpn-%s') | 142 | plugin_name = d.expand('${PN}-plugin-vpn-%s') |
143 | do_split_packages(d, plugin_dir, '^(.*).so$', plugin_name, \ | 143 | do_split_packages(d, plugin_dir, r'^(.*).so$', plugin_name, \ |
144 | '${PN} VPN plugin for %s', extra_depends='', hook=hook, prepend=True ) | 144 | '${PN} VPN plugin for %s', extra_depends='', hook=hook, prepend=True ) |
145 | } | 145 | } |
146 | 146 | ||