From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from sc8-sf-mx1-b.sourceforge.net ([10.3.1.91] helo=mail.sourceforge.net) by sc8-sf-list1-new.sourceforge.net with esmtp (Exim 4.43) id 1IsetU-00014U-2O for user-mode-linux-devel@lists.sourceforge.net; Thu, 15 Nov 2007 05:36:32 -0800 Received: from ro-out-1112.google.com ([72.14.202.177]) by mail.sourceforge.net with esmtp (Exim 4.44) id 1IsetS-0008CQ-E7 for user-mode-linux-devel@lists.sourceforge.net; Thu, 15 Nov 2007 05:36:31 -0800 Received: by ro-out-1112.google.com with SMTP id o35so221369rog for ; Thu, 15 Nov 2007 05:36:27 -0800 (PST) Date: Thu, 15 Nov 2007 21:34:21 +0800 From: WANG Cong Message-ID: <20071115133421.GD2489@hacking> MIME-Version: 1.0 Content-Disposition: inline Subject: [SPAM] [uml-devel] [Patch] UML: building error fix Reply-To: WANG Cong List-Id: The user-mode Linux development list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: user-mode-linux-devel-bounces@lists.sourceforge.net Errors-To: user-mode-linux-devel-bounces@lists.sourceforge.net To: LKML Cc: Andrew Morton , Jeff Dike , user-mode-linux-devel@lists.sourceforge.net include/asm-um/arch points to the non-existed include/asm-i386 directory. This patch fixed it. Signed-off-by: WANG Cong Cc: Jeff Dike --- diff --git a/arch/um/Makefile b/arch/um/Makefile index 31999bc..ba6813a 100644 --- a/arch/um/Makefile +++ b/arch/um/Makefile @@ -168,7 +168,7 @@ ifneq ($(KBUILD_SRC),) $(Q)mkdir -p $(objtree)/include/asm-um $(Q)ln -fsn $(srctree)/include/asm-$(HEADER_ARCH) include/asm-um/arch else - $(Q)cd $(TOPDIR)/include/asm-um && ln -fsn ../asm-$(SUBARCH) arch + $(Q)cd $(TOPDIR)/include/asm-um && ln -fsn ../asm-$(HEADER_ARCH) arch endif $(objtree)/$(ARCH_DIR)/include: ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ User-mode-linux-devel mailing list User-mode-linux-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757760AbXKONgh (ORCPT ); Thu, 15 Nov 2007 08:36:37 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757124AbXKONg3 (ORCPT ); Thu, 15 Nov 2007 08:36:29 -0500 Received: from ro-out-1112.google.com ([72.14.202.180]:17889 "EHLO ro-out-1112.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756854AbXKONg2 (ORCPT ); Thu, 15 Nov 2007 08:36:28 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:from:to:cc:subject:message-id:reply-to:mime-version:content-type:content-disposition:user-agent; b=NU6NgXUvao6D7QpiwTcT7mD17FsJoEMd4Brpp7BWUB8Tar198h9Uq0i6thtWX+5Kb/gIT4wXtOhQCKOZIKvO+ShxktYkfOyBMV3Uzp1kSqyIxy3py0SuuF5p+Wrkmitq/6mvBAOkdHCHjIcljqsNmMnGLicXJlGRPMWMDVUiyO0= Date: Thu, 15 Nov 2007 21:34:21 +0800 From: WANG Cong To: LKML Cc: Jeff Dike , Andrew Morton , user-mode-linux-devel@lists.sourceforge.net Subject: [Patch] UML: building error fix Message-ID: <20071115133421.GD2489@hacking> Reply-To: WANG Cong MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.14 (2007-02-12) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org include/asm-um/arch points to the non-existed include/asm-i386 directory. This patch fixed it. Signed-off-by: WANG Cong Cc: Jeff Dike --- diff --git a/arch/um/Makefile b/arch/um/Makefile index 31999bc..ba6813a 100644 --- a/arch/um/Makefile +++ b/arch/um/Makefile @@ -168,7 +168,7 @@ ifneq ($(KBUILD_SRC),) $(Q)mkdir -p $(objtree)/include/asm-um $(Q)ln -fsn $(srctree)/include/asm-$(HEADER_ARCH) include/asm-um/arch else - $(Q)cd $(TOPDIR)/include/asm-um && ln -fsn ../asm-$(SUBARCH) arch + $(Q)cd $(TOPDIR)/include/asm-um && ln -fsn ../asm-$(HEADER_ARCH) arch endif $(objtree)/$(ARCH_DIR)/include: