diff mbox series

[10/10] configure: remove unnecessary symlinks

Message ID 20211216085139.99682-11-pbonzini@redhat.com (mailing list archive)
State New, archived
Headers show
Series configure cleanups, mostly wrt $cpu and $targetos | expand

Commit Message

Paolo Bonzini Dec. 16, 2021, 8:51 a.m. UTC
Make pc-bios/meson.build use the files in the source tree as inputs
to bzip2.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 configure           | 1 -
 pc-bios/meson.build | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

Comments

Richard Henderson Dec. 17, 2021, 10:03 p.m. UTC | #1
On 12/16/21 12:51 AM, Paolo Bonzini wrote:
> Make pc-bios/meson.build use the files in the source tree as inputs
> to bzip2.
> 
> Signed-off-by: Paolo Bonzini<pbonzini@redhat.com>
> ---
>   configure           | 1 -
>   pc-bios/meson.build | 2 +-
>   2 files changed, 1 insertion(+), 2 deletions(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~
diff mbox series

Patch

diff --git a/configure b/configure
index 2cecbd4c66..7751cc31b8 100755
--- a/configure
+++ b/configure
@@ -3817,7 +3817,6 @@  for bios_file in \
     $source_path/pc-bios/*.img \
     $source_path/pc-bios/openbios-* \
     $source_path/pc-bios/u-boot.* \
-    $source_path/pc-bios/edk2-*.fd.bz2 \
     $source_path/pc-bios/palcode-* \
     $source_path/pc-bios/qemu_vga.ndrv
 
diff --git a/pc-bios/meson.build b/pc-bios/meson.build
index b40ff3f2bd..1812a4084f 100644
--- a/pc-bios/meson.build
+++ b/pc-bios/meson.build
@@ -15,7 +15,7 @@  if unpack_edk2_blobs
     roms += custom_target(f,
                   build_by_default: have_system,
                   output: f,
-                  input: '@0@.bz2'.format(f),
+                  input: files('@0@.bz2'.format(f)),
                   capture: true,
                   install: get_option('install_blobs'),
                   install_dir: qemu_datadir,