aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2008-09-30 20:10:52 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2008-09-30 20:10:52 +0000
commit10aea1a81a18c646d5f95f07eddc3cf8cc086f93 (patch)
tree1785ebe8c94a64c3393534b4c708b56f6fa18a7e
parent60794b169f005a712aa1c1668b45640fdd1832cf (diff)
downloadbitbake-10aea1a81a18c646d5f95f07eddc3cf8cc086f93.tar.gz
providers.py: Fix PACKAGES_DYNAMIC handling of packages with '++' in the name (from poky)
-rw-r--r--ChangeLog1
-rw-r--r--lib/bb/providers.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 943a5f972..4a437a372 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -146,6 +146,7 @@ Changes in Bitbake 1.9.x:
- Move prunedir function to utils.py and add explode_dep_versions function
- Raise an exception if SRCREV == 'INVALID'
- Fix hg fetcher username/password handling and fix crash
+ - Fix PACKAGES_DYNAMIC handling of packages with '++' in the name
Changes in Bitbake 1.8.0:
- Release 1.7.x as a stable series
diff --git a/lib/bb/providers.py b/lib/bb/providers.py
index 63d4f5b3c..3504efc86 100644
--- a/lib/bb/providers.py
+++ b/lib/bb/providers.py
@@ -296,6 +296,7 @@ def getRuntimeProviders(dataCache, rdepend):
# Only search dynamic packages if we can't find anything in other variables
for pattern in dataCache.packages_dynamic:
+ pattern = pattern.replace('+', "\+")
try:
regexp = re.compile(pattern)
except: