Quiet some messages from the configurators. We don't need them.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon May 14 19:28:14 2007 +0000 (2007-05-14)
changeset 94f32c4f663805
parent 93 cd964565a38a
child 95 57694569322b
Quiet some messages from the configurators. We don't need them.
kconfig/confdata.c
kconfig/mconf.c
     1.1 --- a/kconfig/confdata.c	Sun May 13 21:12:56 2007 +0000
     1.2 +++ b/kconfig/confdata.c	Mon May 14 19:28:14 2007 +0000
     1.3 @@ -524,10 +524,6 @@
     1.4  			return 1;
     1.5  	}
     1.6  
     1.7 -	printf(_("#\n"
     1.8 -		 "# configuration written to %s\n"
     1.9 -		 "#\n"), newname);
    1.10 -
    1.11  	sym_set_change_count(0);
    1.12  
    1.13  	return 0;
     2.1 --- a/kconfig/mconf.c	Sun May 13 21:12:56 2007 +0000
     2.2 +++ b/kconfig/mconf.c	Mon May 14 19:28:14 2007 +0000
     2.3 @@ -904,22 +904,15 @@
     2.4  	switch (res) {
     2.5  	case 0:
     2.6  		if (conf_write(NULL)) {
     2.7 -			fprintf(stderr, _("\n\n"
     2.8 -				"Error during writing of "PROJECT_NAME" configuration.\n"
     2.9 -				"Your kernel configuration changes were NOT saved."
    2.10 -				"\n\n"));
    2.11 +			fprintf(stderr,
    2.12 +				_( "Error during writing of "PROJECT_NAME" configuration.\n"
    2.13 +				   "Your configuration changes were NOT saved.\n"));
    2.14  			return 1;
    2.15  		}
    2.16  	case -1:
    2.17 -		printf(_("\n\n"
    2.18 -			"*** End of "PROJECT_NAME" configuration.\n"
    2.19 -			"*** Execute 'make' to build the kernel or try 'make help'."
    2.20 -			"\n\n"));
    2.21  		break;
    2.22  	default:
    2.23 -		fprintf(stderr, _("\n\n"
    2.24 -			"Your configuration changes were NOT saved."
    2.25 -			"\n\n"));
    2.26 +		fprintf(stderr, _( "Your configuration changes were NOT saved.\n"));
    2.27  	}
    2.28  
    2.29  	return 0;