mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
59e87e380a
commit
5fd0c16035
@@ -352,7 +352,7 @@ do_install() {
|
||||
|
||||
python populate_packages:prepend (){
|
||||
systemdlibdir = d.getVar("rootlibdir")
|
||||
do_split_packages(d, systemdlibdir, '^lib(.*)\.so\.*', 'lib%s', 'Systemd %s library', extra_depends='', allow_links=True)
|
||||
do_split_packages(d, systemdlibdir, r'^lib(.*)\.so\.*', 'lib%s', 'Systemd %s library', extra_depends='', allow_links=True)
|
||||
}
|
||||
PACKAGES_DYNAMIC += "^lib(udev|systemd|nss).*"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user