From 593df044c6a18ac3594215f5b93ecbc3ceab9f44 Mon Sep 17 00:00:00 2001 From: Christopher Clark Date: Tue, 25 Feb 2020 16:15:58 -0800 Subject: xen-tools: change globbing to fix syntax highlighting A text editor can interpret /* as the beginning of a comment and then fail to find the matching */ it expects as a terminator. This causes it to mishighlight the rest of the file. Avoid this by using a different matching pattern. Fixes an annoyance when editing the file. No functional change intended. Signed-off-by: Christopher Clark Signed-off-by: Bruce Ashfield --- recipes-extended/xen/xen-tools.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'recipes-extended/xen/xen-tools.inc') diff --git a/recipes-extended/xen/xen-tools.inc b/recipes-extended/xen/xen-tools.inc index 5b0a3394..e166c74b 100644 --- a/recipes-extended/xen/xen-tools.inc +++ b/recipes-extended/xen/xen-tools.inc @@ -197,7 +197,7 @@ FILES_${PN}-dbg += "\ ${libdir}/fs/zfs/.debug \ ${libdir}/fs/reiserfs/.debug \ ${libdir}/fs/iso9660/.debug \ - ${libdir}/fs/*/.debug \ + ${libdir}/fs/**/.debug \ ${sbindir}/.debug \ ${libdir}exec/.debug \ ${libdir}/xen/libexec/.debug \ @@ -346,8 +346,8 @@ FILES_${PN}-libfsimage-dev = " \ " FILES_${PN}-fsimage = " \ - ${libdir}/fs/*/*fsimage.so \ - ${libdir}/xenfsimage/*/fsimage.so \ + ${libdir}/fs/**/[a-z]*fsimage.so \ + ${libdir}/xenfsimage/**/fsimage.so \ " FILES_${PN}-init-xenstore-dom = "${libdir}/xen/bin/init-xenstore-domain" -- cgit v1.2.3-54-g00ecf