diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2021-01-14 18:45:09 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-01-23 15:55:07 -0500 |
commit | 45b545dd190422570f92ecdb50f844e59732a955 (patch) | |
tree | 517d73b62b5f75cc9048c7dfa412acaa92320305 /pc-bios | |
parent | eae9a1d18beb2bfe42fc48330a009339dc7e8eee (diff) | |
download | qemu-45b545dd190422570f92ecdb50f844e59732a955.zip qemu-45b545dd190422570f92ecdb50f844e59732a955.tar.gz qemu-45b545dd190422570f92ecdb50f844e59732a955.tar.bz2 |
meson.build: Detect bzip2 program
The --enable-bzip2/--disable-bzip2 configure arguments are
somehow misleading, they check for the bzip2 library, not
the bzip2 program.
We need the bzip2 program to install the EDK2 firmware blobs
(see commit 623ef637a2e "configure: Check bzip2 is available").
Check if the bzip2 program in the global meson.build to avoid
the configuration to succeed, but a later when trying to install
the firmware blobs:
../pc-bios/meson.build:5:2: ERROR: Program 'bzip2' not found
Reported-by: John Snow <jsnow@redhat.com>
Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
Fixes: c8d5450bba3 ("configure: move install_blobs from configure to meson")
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210114174509.2944817-3-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'pc-bios')
-rw-r--r-- | pc-bios/meson.build | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pc-bios/meson.build b/pc-bios/meson.build index 6a341b6..af95c5d 100644 --- a/pc-bios/meson.build +++ b/pc-bios/meson.build @@ -1,5 +1,4 @@ if install_edk2_blobs - bzip2 = find_program('bzip2', required: true) fds = [ 'edk2-aarch64-code.fd', 'edk2-arm-code.fd', |