mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
freebsd: use python37
FreeBSD seems to use python37 by default now, which breaks the build script. Add python to the package list, to explicitly pick the version, and also adapt the configure command line. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20200106123746.18201-1-kraxel@redhat.com>
This commit is contained in:
parent
22db66a436
commit
bc2bf7f348
1 changed files with 2 additions and 1 deletions
|
@ -32,6 +32,7 @@ class FreeBSDVM(basevm.BaseVM):
|
|||
"git",
|
||||
"pkgconf",
|
||||
"bzip2",
|
||||
"python37",
|
||||
|
||||
# gnu tools
|
||||
"bash",
|
||||
|
@ -63,7 +64,7 @@ class FreeBSDVM(basevm.BaseVM):
|
|||
mkdir src build; cd src;
|
||||
tar -xf /dev/vtbd1;
|
||||
cd ../build
|
||||
../src/configure --python=python3.6 {configure_opts};
|
||||
../src/configure --python=python3.7 {configure_opts};
|
||||
gmake --output-sync -j{jobs} {target} {verbose};
|
||||
"""
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue