diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2024-07-05 09:40:08 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2024-07-05 12:33:32 +0100 |
commit | 515632d5205a2abc9beb80cc70f51235fe2b47f2 (patch) | |
tree | 797d7c477051093f3f2881c40fbe4817d94a2876 /tests/lcitool/refresh | |
parent | 5915139aba1646220630596de30c673528e047c9 (diff) | |
download | qemu-515632d5205a2abc9beb80cc70f51235fe2b47f2.zip qemu-515632d5205a2abc9beb80cc70f51235fe2b47f2.tar.gz qemu-515632d5205a2abc9beb80cc70f51235fe2b47f2.tar.bz2 |
tests/lcitool: fix debian-i686-cross toolchain prefix
I guess we never noticed and tried to build with this cross image. Fix
the toolchain prefix so we actually build 32 bit images.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240705084047.857176-2-alex.bennee@linaro.org>
Diffstat (limited to 'tests/lcitool/refresh')
-rwxr-xr-x | tests/lcitool/refresh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lcitool/refresh b/tests/lcitool/refresh index b25e3ac..ac803e3 100755 --- a/tests/lcitool/refresh +++ b/tests/lcitool/refresh @@ -167,7 +167,7 @@ try: generate_dockerfile("debian-i686-cross", "debian-11", cross="i686", - trailer=cross_build("x86_64-linux-gnu-", + trailer=cross_build("i686-linux-gnu-", "x86_64-softmmu," "x86_64-linux-user," "i386-softmmu,i386-linux-user")) |