From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1161155AbXDEE5X (ORCPT ); Thu, 5 Apr 2007 00:57:23 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1161161AbXDEE5X (ORCPT ); Thu, 5 Apr 2007 00:57:23 -0400 Received: from agminet01.oracle.com ([141.146.126.228]:29933 "EHLO agminet01.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1161155AbXDEE5X (ORCPT ); Thu, 5 Apr 2007 00:57:23 -0400 Date: Wed, 4 Apr 2007 21:58:41 -0700 From: Randy Dunlap To: lkml Cc: zippel@linux-m68k.org, sam@ravnborg.org Subject: [PATCH] kbuild: be more explicit on missing .config file Message-Id: <20070404215841.2647cf6d.randy.dunlap@oracle.com> Organization: Oracle Linux Eng. X-Mailer: Sylpheed 2.3.1 (GTK+ 2.8.10; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Whitelist: TRUE X-Whitelist: TRUE X-Brightmail-Tracker: AAAAAQAAAAI= Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org From: Randy Dunlap Somewhat in reponse to kernel bugzilla #8197, be more explicit about why 'make all' fails when there is no .config file. Signed-off-by: Randy Dunlap --- scripts/kconfig/conf.c | 1 + 1 file changed, 1 insertion(+) --- linux-2621-rc5g6.orig/scripts/kconfig/conf.c +++ linux-2621-rc5g6/scripts/kconfig/conf.c @@ -558,6 +558,7 @@ int main(int ac, char **av) if (stat(".config", &tmpstat)) { printf(_("***\n" "*** You have not yet configured your kernel!\n" + "*** (missing kernel .config file)\n" "***\n" "*** Please run some configurator (e.g. \"make oldconfig\" or\n" "*** \"make menuconfig\" or \"make xconfig\").\n"