diff -r 1cca90ce0481 -r 1031ea5af395 kconfig/conf.c --- a/kconfig/conf.c Fri Oct 17 12:47:53 2008 +0000 +++ b/kconfig/conf.c Tue Sep 08 22:42:48 2009 +0200 @@ -67,10 +67,10 @@ static void check_stdin(void) { if (!valid_stdin) { - printf(_("aborted!\n\n")); - printf(_("Console input/output is redirected. ")); - printf(_("Run 'make oldconfig' to update configuration.\n\n")); - exit(1); + /* For crosstool-NG, we don't care if stdin/stdout got redirected. + * In this case, just printf a cariage return, for pretty output. + */ + printf("\n"); } }