diff options
author | Christopher Clark <christopher.w.clark@gmail.com> | 2020-02-25 16:15:58 -0800 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2020-02-27 16:59:23 -0500 |
commit | 593df044c6a18ac3594215f5b93ecbc3ceab9f44 (patch) | |
tree | 8a7e2ed24693e9a31e7bcc7bedffd2c7b4d59cbf | |
parent | 19b45a9fedf00bc8fa4b96091176a0c886f65f35 (diff) | |
download | meta-virtualization-593df044c6a18ac3594215f5b93ecbc3ceab9f44.tar.gz |
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 <christopher.clark6@baesystems.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-extended/xen/xen-tools.inc | 6 |
1 files changed, 3 insertions, 3 deletions
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 += "\ | |||
197 | ${libdir}/fs/zfs/.debug \ | 197 | ${libdir}/fs/zfs/.debug \ |
198 | ${libdir}/fs/reiserfs/.debug \ | 198 | ${libdir}/fs/reiserfs/.debug \ |
199 | ${libdir}/fs/iso9660/.debug \ | 199 | ${libdir}/fs/iso9660/.debug \ |
200 | ${libdir}/fs/*/.debug \ | 200 | ${libdir}/fs/**/.debug \ |
201 | ${sbindir}/.debug \ | 201 | ${sbindir}/.debug \ |
202 | ${libdir}exec/.debug \ | 202 | ${libdir}exec/.debug \ |
203 | ${libdir}/xen/libexec/.debug \ | 203 | ${libdir}/xen/libexec/.debug \ |
@@ -346,8 +346,8 @@ FILES_${PN}-libfsimage-dev = " \ | |||
346 | " | 346 | " |
347 | 347 | ||
348 | FILES_${PN}-fsimage = " \ | 348 | FILES_${PN}-fsimage = " \ |
349 | ${libdir}/fs/*/*fsimage.so \ | 349 | ${libdir}/fs/**/[a-z]*fsimage.so \ |
350 | ${libdir}/xenfsimage/*/fsimage.so \ | 350 | ${libdir}/xenfsimage/**/fsimage.so \ |
351 | " | 351 | " |
352 | 352 | ||
353 | FILES_${PN}-init-xenstore-dom = "${libdir}/xen/bin/init-xenstore-domain" | 353 | FILES_${PN}-init-xenstore-dom = "${libdir}/xen/bin/init-xenstore-domain" |