diff options
Diffstat (limited to 'meta/lib/oe/package.py')
-rw-r--r-- | meta/lib/oe/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/package.py b/meta/lib/oe/package.py index efd36b3758..6e83f01f14 100644 --- a/meta/lib/oe/package.py +++ b/meta/lib/oe/package.py | |||
@@ -255,7 +255,7 @@ def read_shlib_providers(d): | |||
255 | 255 | ||
256 | shlib_provider = {} | 256 | shlib_provider = {} |
257 | shlibs_dirs = d.getVar('SHLIBSDIRS').split() | 257 | shlibs_dirs = d.getVar('SHLIBSDIRS').split() |
258 | list_re = re.compile('^(.*)\.list$') | 258 | list_re = re.compile(r'^(.*)\.list$') |
259 | # Go from least to most specific since the last one found wins | 259 | # Go from least to most specific since the last one found wins |
260 | for dir in reversed(shlibs_dirs): | 260 | for dir in reversed(shlibs_dirs): |
261 | bb.debug(2, "Reading shlib providers in %s" % (dir)) | 261 | bb.debug(2, "Reading shlib providers in %s" % (dir)) |