diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-01-06 13:37:46 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2020-01-09 11:41:29 +0000 |
commit | bc2bf7f3480c51c3e7f38bdab1542deec765601e (patch) | |
tree | f690a8b8370ec463c40cc002864c93fb1c2b49e1 /tests/vm | |
parent | 22db66a436346fcccddf7617bacacdc926d2680d (diff) | |
download | qemu-bc2bf7f3480c51c3e7f38bdab1542deec765601e.zip |
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>
Diffstat (limited to 'tests/vm')
-rwxr-xr-x | tests/vm/freebsd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/vm/freebsd b/tests/vm/freebsd index 1825cc5821..33a736298a 100755 --- a/tests/vm/freebsd +++ b/tests/vm/freebsd @@ -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}; """ |