diff -r 1cca90ce0481 -r 88020b2c3246 kconfig/conf.c --- a/kconfig/conf.c Fri Oct 17 12:47:53 2008 +0000 +++ b/kconfig/conf.c Tue Jan 12 19:24:03 2010 +0100 @@ -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"); } }