From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58741) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cGpoz-0000FF-C8 for qemu-devel@nongnu.org; Tue, 13 Dec 2016 11:20:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cGpot-0001OK-Ho for qemu-devel@nongnu.org; Tue, 13 Dec 2016 11:20:53 -0500 Received: from mx1.redhat.com ([209.132.183.28]:35392) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cGpot-0001O4-C2 for qemu-devel@nongnu.org; Tue, 13 Dec 2016 11:20:47 -0500 References: <1481285870-3396-1-git-send-email-thuth@redhat.com> <1481285870-3396-21-git-send-email-thuth@redhat.com> <8581a7a9-9596-7f1f-ffe0-d87181221109@vivier.eu> From: Paolo Bonzini Message-ID: <2cb96029-9bda-713d-c848-3a2a11d966f1@redhat.com> Date: Tue, 13 Dec 2016 17:20:35 +0100 MIME-Version: 1.0 In-Reply-To: <8581a7a9-9596-7f1f-ffe0-d87181221109@vivier.eu> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 20/20] Makefile.target: Targets now have to reside in the target/ folder List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Laurent Vivier , Thomas Huth , qemu-devel@nongnu.org, Peter Crosthwaite , Richard Henderson , Aurelien Jarno , Peter Maydell Cc: "Edgar E. Iglesias" , Michael Walle , Yongbok Kim , Anthony Green , Jia Liu , David Gibson , Alexander Graf , Mark Cave-Ayland , Artyom Tarasenko , Guan Xuetao , Eduardo Habkost , Max Filippov , Bastian Koppelmann , James Hogan , Christian Borntraeger , Cornelia Huck , Marcelo Tosatti On 09/12/2016 13:27, Laurent Vivier wrote: > Le 09/12/2016 =C3=A0 13:17, Thomas Huth a =C3=A9crit : >> Now that all target CPU folders have been moved to target/, we >> do not need to support the old naming scheme of target-xxx >> anymore. >> >> Signed-off-by: Thomas Huth >> --- >> Makefile.target | 4 ---- >> 1 file changed, 4 deletions(-) >> >> diff --git a/Makefile.target b/Makefile.target >> index 90b25ae..1da789c 100644 >> --- a/Makefile.target >> +++ b/Makefile.target >> @@ -7,11 +7,7 @@ include config-target.mak >> include config-devices.mak >> include $(SRC_PATH)/rules.mak >> =20 >> -ifneq ($(wildcard $(SRC_PATH)/target/$(TARGET_BASE_ARCH)),) >> TARGET_FOLDER=3Dtarget/$(TARGET_BASE_ARCH) >> -else >> -TARGET_FOLDER=3Dtarget-$(TARGET_BASE_ARCH) >> -endif >> =20 >> $(call set-vpath, $(SRC_PATH):$(BUILD_DIR)) >> ifdef CONFIG_LINUX >> > Reviewed-by: Laurent Vivier >=20 Please undo the introduction of TARGET_FOLDER completely. I would just squash all 20 patches together, and send a pull request. Paolo