Quiet some messages from the configurators. We don't need them.

This commit is contained in:
Yann E. MORIN" 2007-05-14 19:28:14 +00:00
parent 9ce8af9fa5
commit ae66018803
2 changed files with 4 additions and 15 deletions

View File

@ -524,10 +524,6 @@ int conf_write(const char *name)
return 1;
}
printf(_("#\n"
"# configuration written to %s\n"
"#\n"), newname);
sym_set_change_count(0);
return 0;

View File

@ -904,22 +904,15 @@ int main(int ac, char **av)
switch (res) {
case 0:
if (conf_write(NULL)) {
fprintf(stderr, _("\n\n"
"Error during writing of "PROJECT_NAME" configuration.\n"
"Your kernel configuration changes were NOT saved."
"\n\n"));
fprintf(stderr,
_( "Error during writing of "PROJECT_NAME" configuration.\n"
"Your configuration changes were NOT saved.\n"));
return 1;
}
case -1:
printf(_("\n\n"
"*** End of "PROJECT_NAME" configuration.\n"
"*** Execute 'make' to build the kernel or try 'make help'."
"\n\n"));
break;
default:
fprintf(stderr, _("\n\n"
"Your configuration changes were NOT saved."
"\n\n"));
fprintf(stderr, _( "Your configuration changes were NOT saved.\n"));
}
return 0;