mirror of https://github.com/xemu-project/xemu.git
scripts/analyze-inclusions: drop qemu-common.h from analysis
The header is no longer commonly included. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20220420132624.2439741-4-marcandre.lureau@redhat.com>
This commit is contained in:
parent
951cc9df88
commit
6712f04ec8
|
@ -46,7 +46,6 @@ grep_include() {
|
|||
}
|
||||
|
||||
echo Found $(find . -name "*.d" | wc -l) object files
|
||||
echo $(grep_include -F 'include/qemu-common.h') files include qemu-common.h
|
||||
echo $(grep_include -F 'hw/hw.h') files include hw/hw.h
|
||||
echo $(grep_include 'target/[a-z0-9]*/cpu\.h') files include cpu.h
|
||||
echo $(grep_include -F 'qapi-types.h') files include qapi-types.h
|
||||
|
@ -86,9 +85,6 @@ analyze() {
|
|||
echo osdep.h:
|
||||
analyze ../include/qemu/osdep.h
|
||||
|
||||
echo qemu-common.h:
|
||||
analyze -include ../include/qemu/osdep.h ../include/qemu-common.h
|
||||
|
||||
echo hw/hw.h:
|
||||
analyze -include ../include/qemu/osdep.h ../include/hw/hw.h
|
||||
|
||||
|
|
Loading…
Reference in New Issue