From: Alexey Kardashevskiy Date: Wed, 26 Oct 2016 02:18:03 +0000 (+1100) Subject: configure, ppc64: Copy skiboot.lid to build directory when configuring X-Git-Tag: qemu-xen-4.9.0-rc1~110^2~50 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=225a9ab8833e5191d180e23a23b8fb381fbaf9c3;p=qemu-xen.git configure, ppc64: Copy skiboot.lid to build directory when configuring When configured to compile out of tree, the configure script copies BIOS blobs to the build directory. However since the PPC64 powernv machine ROM has .lid extension, it is ignored and "make check" fails when trying the powernv machine. This adds *.lid to the list of copied blobs. Signed-off-by: Alexey Kardashevskiy Signed-off-by: David Gibson --- diff --git a/configure b/configure index 8e10059607..7b8e77f45b 100755 --- a/configure +++ b/configure @@ -6131,6 +6131,7 @@ FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile" FILES="$FILES pc-bios/qemu-icon.bmp" for bios_file in \ $source_path/pc-bios/*.bin \ + $source_path/pc-bios/*.lid \ $source_path/pc-bios/*.aml \ $source_path/pc-bios/*.rom \ $source_path/pc-bios/*.dtb \