diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2022-02-20 09:47:43 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-21 21:53:52 +0000 |
commit | 5fd0c1603515964076aeb059c0214e2cb81d6f73 (patch) | |
tree | b589ecee2cf65fff098786e8c5cfd957414c7b26 /meta/recipes-core | |
parent | 59e87e380aa191b5bf256129a9444d6d1741ff67 (diff) | |
download | poky-5fd0c1603515964076aeb059c0214e2cb81d6f73.tar.gz |
systemd: fix DeprecationWarning about regexps
* fixes:
oe-core/meta/classes/package.bbclass:1342: DeprecationWarning: invalid escape sequence \.
(From OE-Core rev: 65ddc0f68fc2e6e8fd38ac48fd18e8099b52ec1b)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/systemd/systemd_250.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/systemd/systemd_250.3.bb b/meta/recipes-core/systemd/systemd_250.3.bb index 0fe5fb7976..9121333f56 100644 --- a/meta/recipes-core/systemd/systemd_250.3.bb +++ b/meta/recipes-core/systemd/systemd_250.3.bb | |||
@@ -352,7 +352,7 @@ do_install() { | |||
352 | 352 | ||
353 | python populate_packages:prepend (){ | 353 | python populate_packages:prepend (){ |
354 | systemdlibdir = d.getVar("rootlibdir") | 354 | systemdlibdir = d.getVar("rootlibdir") |
355 | do_split_packages(d, systemdlibdir, '^lib(.*)\.so\.*', 'lib%s', 'Systemd %s library', extra_depends='', allow_links=True) | 355 | do_split_packages(d, systemdlibdir, r'^lib(.*)\.so\.*', 'lib%s', 'Systemd %s library', extra_depends='', allow_links=True) |
356 | } | 356 | } |
357 | PACKAGES_DYNAMIC += "^lib(udev|systemd|nss).*" | 357 | PACKAGES_DYNAMIC += "^lib(udev|systemd|nss).*" |
358 | 358 | ||