From 8402b7ac0f2e3b0afd9d56e16e7935e1887c7698 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 12 Oct 2012 10:13:12 +0200 Subject: 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 --- meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xfce/recipes-xfce/xfce4-panel') 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() { '${bindir}/*%s*']) } -PACKAGES_DYNAMIC = "${PN}-plugin-*" +PACKAGES_DYNAMIC += "^${PN}-plugin-.*" FILES_${PN} += "${libdir}/xfce4/panel/migrate \ ${libdir}/xfce4/panel/wrapper" -- cgit 1.2.3-korg