diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-10-12 12:46:38 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-19 18:02:26 +0100 |
commit | 33b31640bf485bcfefee015e9df81aa9989b322c (patch) | |
tree | 8289b56e8d7055252d26d5eb496f74217986acec /meta/recipes-gnome | |
parent | e9938516240e7ef3b5aeb47690828dd574ba2d8e (diff) | |
download | poky-33b31640bf485bcfefee015e9df81aa9989b322c.tar.gz |
PACKAGES_DYNAMIC: use regexp not glob
* bitbake uses PACKAGES_DYNAMIC as regexp
^ could make matching faster (and it will be more clear that we're expecting regexp not glob)
* made all those last '-' optional, use .* (or nothing)
(From OE-Core rev: 2f3ebdfa5f42dae51063b043cc4b0fbe20b40064)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome')
-rw-r--r-- | meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb | 2 | ||||
-rw-r--r-- | meta/recipes-gnome/gtk+/gtk+_2.24.8.bb | 2 | ||||
-rw-r--r-- | meta/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb index 8d18b87f5d..a77eee1164 100644 --- a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb +++ b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb | |||
@@ -72,7 +72,7 @@ if [ -x ${bindir}/gtk-update-icon-cache ] && [ -d ${datadir}/icons ]; then | |||
72 | fi | 72 | fi |
73 | } | 73 | } |
74 | 74 | ||
75 | PACKAGES_DYNAMIC += "gdk-pixbuf-loader-*" | 75 | PACKAGES_DYNAMIC += "^gdk-pixbuf-loader-.*" |
76 | PACKAGES_DYNAMIC_virtclass-native = "" | 76 | PACKAGES_DYNAMIC_virtclass-native = "" |
77 | 77 | ||
78 | python populate_packages_prepend () { | 78 | python populate_packages_prepend () { |
diff --git a/meta/recipes-gnome/gtk+/gtk+_2.24.8.bb b/meta/recipes-gnome/gtk+/gtk+_2.24.8.bb index 2d08dc2e3a..5481f82b64 100644 --- a/meta/recipes-gnome/gtk+/gtk+_2.24.8.bb +++ b/meta/recipes-gnome/gtk+/gtk+_2.24.8.bb | |||
@@ -36,7 +36,7 @@ EXTRA_OECONF = "--without-libtiff --without-libjasper --enable-xkb --disable-gli | |||
36 | 36 | ||
37 | LIBV = "2.10.0" | 37 | LIBV = "2.10.0" |
38 | 38 | ||
39 | PACKAGES_DYNAMIC += "gtk-immodule-* gtk-printbackend-*" | 39 | PACKAGES_DYNAMIC += "^gtk-immodule-.* ^gtk-printbackend-.*" |
40 | BBCLASSEXTEND = "native" | 40 | BBCLASSEXTEND = "native" |
41 | RRECOMMENDS_${PN}_virtclass-native = "" | 41 | RRECOMMENDS_${PN}_virtclass-native = "" |
42 | DEPENDS_virtclass-native = "glib-2.0-native atk-native pango-native cairo-native gdk-pixbuf-native" | 42 | DEPENDS_virtclass-native = "glib-2.0-native atk-native pango-native cairo-native gdk-pixbuf-native" |
diff --git a/meta/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb b/meta/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb index 259517ea1d..d09c2b63cc 100644 --- a/meta/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb +++ b/meta/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb | |||
@@ -10,7 +10,7 @@ DEPENDS = "gtk+" | |||
10 | 10 | ||
11 | PR = "r3" | 11 | PR = "r3" |
12 | 12 | ||
13 | PACKAGES_DYNAMIC = "gtk-engine-* gtk-theme-*" | 13 | PACKAGES_DYNAMIC = "^gtk-engine-.* ^gtk-theme-.*" |
14 | 14 | ||
15 | RDEPENDS_gtk-theme-redmond = "gtk-engine-redmond95" | 15 | RDEPENDS_gtk-theme-redmond = "gtk-engine-redmond95" |
16 | RDEPENDS_gtk-theme-metal = "gtk-engine-metal" | 16 | RDEPENDS_gtk-theme-metal = "gtk-engine-metal" |