2002-06-15 15:05:04

by Andries E. Brouwer

[permalink] [raw]
Subject: [trivial PATCH] config

% make
***
*** You have not yet configured your kernel!
*** Please run "make xconfig/menuconfig/config/oldconfig"
***
make: *** [.config] Error 1
% make xconfig/menuconfig/config/oldconfig
***
*** You have not yet configured your kernel!
*** Please run "make xconfig/menuconfig/config/oldconfig"
***
make: *** [.config] Error 1
%

Strange - I do precisely what they ask, and the error persists.

--- /linux/2.5/linux-2.5.21/linux/Makefile Sun Jun 9 07:27:22 2002
+++ ./Makefile Sat Jun 15 17:00:46 2002
@@ -143,7 +143,8 @@
.config:
@echo '***'
@echo '*** You have not yet configured your kernel!'
- @echo '*** Please run "make xconfig/menuconfig/config/oldconfig"'
+ @echo '*** Please run some configurator (do "make xconfig" or'
+ @echo '*** "make menuconfig" or "make oldconfig" or "make config").'
@echo '***'
@exit 1


2002-06-15 15:49:39

by Kai Germaschewski

[permalink] [raw]
Subject: Re: [trivial PATCH] config

On Sat, 15 Jun 2002 [email protected] wrote:

> % make
> ***
> *** You have not yet configured your kernel!
> *** Please run "make xconfig/menuconfig/config/oldconfig"
> ***
> make: *** [.config] Error 1
> % make xconfig/menuconfig/config/oldconfig
> ***
> *** You have not yet configured your kernel!
> *** Please run "make xconfig/menuconfig/config/oldconfig"
> ***
> make: *** [.config] Error 1

Okay, I was lazy ;) I'll submit your patch.

Thanks,
--Kai