summaryrefslogtreecommitdiffstats
path: root/meta-gnome/recipes-gnome/gtk+
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2012-10-12 10:13:12 +0200
committerKoen Kooi <koen@dominion.thruhere.net>2012-10-19 11:42:13 +0200
commit8402b7ac0f2e3b0afd9d56e16e7935e1887c7698 (patch)
treea91a90f104a11aa51c5abc40c3dfd4972f735881 /meta-gnome/recipes-gnome/gtk+
parent4cd60deb11a8a6f9134d7f6ec39255a35d921426 (diff)
downloadmeta-openembedded-8402b7ac0f2e3b0afd9d56e16e7935e1887c7698.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) * use += instead of = in most cases to keep ${PN}-locale from bitbake.conf:PACKAGES_DYNAMIC = "^${PN}-locale-.*" Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-gnome/recipes-gnome/gtk+')
-rw-r--r--meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb b/meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb
index c1f535bd4..32b54ef0c 100644
--- a/meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb
+++ b/meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb
@@ -72,7 +72,7 @@ FILES_${PN}-dbg += " \
72 ${libdir}/gtk-3.0/modules/.debug" 72 ${libdir}/gtk-3.0/modules/.debug"
73 73
74 74
75PACKAGES_DYNAMIC += "gtk3-immodule-* gtk3-printbackend-*" 75PACKAGES_DYNAMIC += "^gtk3-immodule-.* ^gtk3-printbackend-.*"
76 76
77python populate_packages_prepend () { 77python populate_packages_prepend () {
78 import os.path 78 import os.path