diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2007-04-05 00:58:41 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2007-05-02 14:58:11 -0400 |
commit | 7ac1c145250adaccf4dbde77a8f811e937aa43c8 (patch) | |
tree | b8a1947e0f04f9a173532b97c8dd1eda3169f4d9 /scripts | |
parent | 6e5a5420b7cdac356efbdc7832e90a805670b889 (diff) |
kbuild: be more explicit on missing .config file
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 <randy.dunlap@oracle.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/conf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index 124b341a18c0..1199baf866ca 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c | |||
@@ -558,6 +558,7 @@ int main(int ac, char **av) | |||
558 | if (stat(".config", &tmpstat)) { | 558 | if (stat(".config", &tmpstat)) { |
559 | printf(_("***\n" | 559 | printf(_("***\n" |
560 | "*** You have not yet configured your kernel!\n" | 560 | "*** You have not yet configured your kernel!\n" |
561 | "*** (missing kernel .config file)\n" | ||
561 | "***\n" | 562 | "***\n" |
562 | "*** Please run some configurator (e.g. \"make oldconfig\" or\n" | 563 | "*** Please run some configurator (e.g. \"make oldconfig\" or\n" |
563 | "*** \"make menuconfig\" or \"make xconfig\").\n" | 564 | "*** \"make menuconfig\" or \"make xconfig\").\n" |