diff options
| author | Martin Jansa <Martin.Jansa@gmail.com> | 2012-10-12 10:13:12 +0200 |
|---|---|---|
| committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-10-19 11:42:13 +0200 |
| commit | 8402b7ac0f2e3b0afd9d56e16e7935e1887c7698 (patch) | |
| tree | a91a90f104a11aa51c5abc40c3dfd4972f735881 /meta-xfce | |
| parent | 4cd60deb11a8a6f9134d7f6ec39255a35d921426 (diff) | |
| download | meta-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-xfce')
| -rw-r--r-- | meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb | 2 | ||||
| -rw-r--r-- | meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb | 2 | ||||
| -rw-r--r-- | meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb b/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb index c018cb5285..1826dd23a6 100644 --- a/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb +++ b/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb | |||
| @@ -16,4 +16,4 @@ python populate_packages_prepend () { | |||
| 16 | do_split_packages(d, themedir, '^(.*)', 'xfwm4-old-theme-%s', 'XFWM4 theme %s', allow_dirs=True) | 16 | do_split_packages(d, themedir, '^(.*)', 'xfwm4-old-theme-%s', 'XFWM4 theme %s', allow_dirs=True) |
| 17 | } | 17 | } |
| 18 | 18 | ||
| 19 | PACKAGES_DYNAMIC += "xfwm4-old-theme-*" | 19 | PACKAGES_DYNAMIC += "^xfwm4-old-theme-.*" |
diff --git a/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb b/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb index 5d034258e6..bb914ba8d7 100644 --- a/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb +++ b/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb | |||
| @@ -20,7 +20,7 @@ python populate_packages_prepend() { | |||
| 20 | '${bindir}/*%s*']) | 20 | '${bindir}/*%s*']) |
| 21 | } | 21 | } |
| 22 | 22 | ||
| 23 | PACKAGES_DYNAMIC = "${PN}-plugin-*" | 23 | PACKAGES_DYNAMIC += "^${PN}-plugin-.*" |
| 24 | 24 | ||
| 25 | FILES_${PN} += "${libdir}/xfce4/panel/migrate \ | 25 | FILES_${PN} += "${libdir}/xfce4/panel/migrate \ |
| 26 | ${libdir}/xfce4/panel/wrapper" | 26 | ${libdir}/xfce4/panel/wrapper" |
diff --git a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb index 049ac6fb64..f17d4e5052 100644 --- a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb +++ b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb | |||
| @@ -14,7 +14,7 @@ python populate_packages_prepend () { | |||
| 14 | do_split_packages(d, themedir, '^(.*)', 'xfwm4-theme-%s', 'XFWM4 theme %s', allow_dirs=True) | 14 | do_split_packages(d, themedir, '^(.*)', 'xfwm4-theme-%s', 'XFWM4 theme %s', allow_dirs=True) |
| 15 | } | 15 | } |
| 16 | 16 | ||
| 17 | PACKAGES_DYNAMIC += "xfwm4-theme-*" | 17 | PACKAGES_DYNAMIC += "^xfwm4-theme-.*" |
| 18 | 18 | ||
| 19 | ALTERNATIVE_${PN} = "x-window-manager" | 19 | ALTERNATIVE_${PN} = "x-window-manager" |
| 20 | ALTERNATIVE_TARGET[x-window-manager] = "${bindir}/xfwm4" | 20 | ALTERNATIVE_TARGET[x-window-manager] = "${bindir}/xfwm4" |
