From: Florian Hofhammer Date: Mon, 19 Jan 2026 10:25:30 +0000 (+0100) Subject: configure: add ppc target back to container tests X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f825b502f987afacdd92b04f0c8f75fb7fbc165;p=thirdparty%2Fqemu.git configure: add ppc target back to container tests Commit 2ff8c9a298 removed support for 32-bit PPC hosts from the build system. Unfortunately, the patch also removed the 32-bit PPC target for containerized tests, which leads to an error when trying to run tests, e.g., with "make check-tcg": "make[1]: *** No rule to make target 'docker-image-debian-ppc-cross', needed by 'build-tcg-tests-ppc-linux-user'. Stop." This patch adds the PPC target back for containerized tests. Fixes: 2ff8c9a2984b ("buildsys: Remove support for 32-bit PPC hosts") Signed-off-by: Florian Hofhammer Reviewed-by: Thomas Huth Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Michael Tokarev [Mjt: specify commit subject in Fixes tag) Signed-off-by: Michael Tokarev --- diff --git a/configure b/configure index 0d73eefc15..213880df89 100755 --- a/configure +++ b/configure @@ -1451,7 +1451,7 @@ probe_target_compiler() { container_image=debian-all-test-cross container_cross_prefix=mips64-linux-gnuabi64- ;; - ppc64|ppc64le) + ppc|ppc64|ppc64le) container_image=debian-all-test-cross container_cross_prefix=powerpc${target_arch#ppc}-linux-gnu- ;;