diff options
author | Joshua Lock <josh@linux.intel.com> | 2011-08-03 11:35:57 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-04 15:06:38 +0100 |
commit | 9eb25be609367e97333fe48cff9c4182d2c622c5 (patch) | |
tree | 2b2d5615e71aff70898f610067167f82deb70643 | |
parent | 03ca33e2eb5c242c28834a5f41a379a193ac08e4 (diff) | |
download | poky-9eb25be609367e97333fe48cff9c4182d2c622c5.tar.gz |
bb/ui/crumbs/tasklistmodel: fix regex used for loading image recipes
Fixes [YOCTO #1321]
(Bitbake rev: a0fb6583222f2d981a69f0dae81b40db6caaa0d5)
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/tasklistmodel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py index e190f969a4..8fb56837ea 100644 --- a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py +++ b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py | |||
@@ -38,7 +38,7 @@ class BuildRep(gobject.GObject): | |||
38 | with open(pathname, 'r') as f: | 38 | with open(pathname, 'r') as f: |
39 | contents = f.readlines() | 39 | contents = f.readlines() |
40 | 40 | ||
41 | pkg_pattern = "^\s*(IMAGE_INSTALL)\s*([+=.?]+)\s*(\"\S*\")" | 41 | pkg_pattern = "^\s*(IMAGE_INSTALL)\s*([+=.?]+)\s*(\".*?\")" |
42 | img_pattern = "^\s*(require)\s+(\S+.bb)" | 42 | img_pattern = "^\s*(require)\s+(\S+.bb)" |
43 | 43 | ||
44 | for line in contents: | 44 | for line in contents: |