summaryrefslogtreecommitdiff
path: root/kconfig/mconf.c
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-05-14 19:28:14 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-05-14 19:28:14 (GMT)
commitae66018803112b86abb96109696ef2192870d6d5 (patch)
treee1b5c970fd537f68f1e34da976a6a47b59506dbc /kconfig/mconf.c
parent9ce8af9fa52cd662f269e9afb03b88aca0b2f3e3 (diff)
Quiet some messages from the configurators. We don't need them.
Diffstat (limited to 'kconfig/mconf.c')
-rw-r--r--kconfig/mconf.c15
1 files changed, 4 insertions, 11 deletions
diff --git a/kconfig/mconf.c b/kconfig/mconf.c
index 69fc4d5..b1a1fb1 100644
--- a/kconfig/mconf.c
+++ b/kconfig/mconf.c
@@ -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;