From patchwork Mon Oct 25 05:48:23 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Namhyung Kim X-Patchwork-Id: 266162 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o9P5mX37010380 for ; Mon, 25 Oct 2010 05:48:33 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751924Ab0JYFsd (ORCPT ); Mon, 25 Oct 2010 01:48:33 -0400 Received: from mail-gx0-f174.google.com ([209.85.161.174]:37486 "EHLO mail-gx0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751680Ab0JYFsc (ORCPT ); Mon, 25 Oct 2010 01:48:32 -0400 Received: by gxk23 with SMTP id 23so1575268gxk.19 for ; Sun, 24 Oct 2010 22:48:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:cc :in-reply-to:references:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; bh=tU9G0NudgNapuSJzGBApXUramogVAKERu1TUAFCQkmU=; b=rDUhzc6QlZP66D/vDa0duCfAdeSADE3UwEOdd5lA6SHmWsBi974MMGKBLxL7t/smZS P8zQsugmZUSHFZtCOE6nG5BhmtE12+DI5gZ44IkE+7E+Bl46aB3lm18b7blSB/HR3Ucq Eq4W3aM5cR8lMuofoqYEz6BMa6zwy/YgWRW6g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:cc:in-reply-to:references:content-type:date :message-id:mime-version:x-mailer:content-transfer-encoding; b=mAPwXPSpztyLkTOY6D0z8Vo+No+XJU4zckCdmIuv2nnal2Xs0PnInYuNDvaYx31vqx Xt65FCLXag8MvTbA/801qAM6yCkDAo7fWcqfSD6I61k7Wd2ZIE8R/bpsn3GfctP6deB1 P5oxctbVNpGQ3UVqNOnKRojE4vO73XUEBBmtU= Received: by 10.150.202.11 with SMTP id z11mr12439677ybf.207.1287985711890; Sun, 24 Oct 2010 22:48:31 -0700 (PDT) Received: from [192.168.10.103] ([211.201.183.198]) by mx.google.com with ESMTPS id r25sm5231254yhc.0.2010.10.24.22.48.28 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 24 Oct 2010 22:48:30 -0700 (PDT) Subject: Re: [PATCH] kconfig: don't select 64 bit option on sparc32 all{yes,mod}config From: Namhyung Kim To: Michal Marek Cc: Roman Zippel , linux-kbuild@vger.kernel.org, "David S. Miller" , linux-kernel@vger.kernel.org In-Reply-To: <4CC4AEBB.6000505@suse.cz> References: <1287762484-8154-1-git-send-email-namhyung@gmail.com> <4CC4AEBB.6000505@suse.cz> Date: Mon, 25 Oct 2010 14:48:23 +0900 Message-ID: <1287985703.1689.11.camel@leonhard> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Mon, 25 Oct 2010 05:48:33 +0000 (UTC) diff --git a/Makefile b/Makefile index 3e43805..8da6685 100644 --- a/Makefile +++ b/Makefile @@ -204,6 +204,9 @@ ifeq ($(ARCH),x86_64) endif # Additional ARCH settings for sparc +ifeq ($(ARCH),sparc32) + SRCARCH := sparc +endif ifeq ($(ARCH),sparc64) SRCARCH := sparc endif