From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60128) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WftBS-0005Ea-FT for qemu-devel@nongnu.org; Thu, 01 May 2014 11:46:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WftBM-00076c-H5 for qemu-devel@nongnu.org; Thu, 01 May 2014 11:46:02 -0400 Received: from mail-qc0-x22b.google.com ([2607:f8b0:400d:c01::22b]:48643) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WftBM-00075b-BA for qemu-devel@nongnu.org; Thu, 01 May 2014 11:45:56 -0400 Received: by mail-qc0-f171.google.com with SMTP id c9so3491092qcz.2 for ; Thu, 01 May 2014 08:45:55 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Thu, 1 May 2014 08:44:43 -0700 Message-Id: <1398959087-23590-23-git-send-email-rth@twiddle.net> In-Reply-To: <1398959087-23590-1-git-send-email-rth@twiddle.net> References: <1398959087-23590-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH 22/26] tcg-ppc: Rename the tcg/ppc64 backend List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: av1474@comtv.ru 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 --- 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 b6d4501..75df8cb 100755 --- a/configure +++ b/configure @@ -4701,8 +4701,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.0