The other tcg backends that support 32- and 64-bit modes use the 32-bit name for the port. Follow suit.
Signed-off-by: Richard Henderson <r...@twiddle.net> --- configure | 4 ++-- tcg/{ppc64 => ppc}/tcg-target.c | 0 tcg/{ppc64 => ppc}/tcg-target.h | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename tcg/{ppc64 => ppc}/tcg-target.c (100%) rename tcg/{ppc64 => ppc}/tcg-target.h (100%) diff --git a/configure b/configure index 277eab4..a803448 100755 --- a/configure +++ b/configure @@ -4716,8 +4716,8 @@ elif test "$ARCH" = "s390x" ; then QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/s390 $QEMU_INCLUDES" elif test "$ARCH" = "x86_64" -o "$ARCH" = "x32" ; then QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/i386 $QEMU_INCLUDES" -elif test "$ARCH" = "ppc" ; then - QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/ppc64 $QEMU_INCLUDES" +elif test "$ARCH" = "ppc64" ; then + QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/ppc $QEMU_INCLUDES" else QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/\$(ARCH) $QEMU_INCLUDES" fi diff --git a/tcg/ppc64/tcg-target.c b/tcg/ppc/tcg-target.c similarity index 100% rename from tcg/ppc64/tcg-target.c rename to tcg/ppc/tcg-target.c diff --git a/tcg/ppc64/tcg-target.h b/tcg/ppc/tcg-target.h similarity index 100% rename from tcg/ppc64/tcg-target.h rename to tcg/ppc/tcg-target.h -- 1.9.3