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>
This commit is contained in:
Christopher Clark 2020-02-25 16:15:58 -08:00 committed by Bruce Ashfield
parent 19b45a9fed
commit 593df044c6

View File

@ -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"