summaryrefslogtreecommitdiff
path: root/kconfig/conf.c
diff options
context:
space:
mode:
Diffstat (limited to 'kconfig/conf.c')
-rw-r--r--kconfig/conf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kconfig/conf.c b/kconfig/conf.c
index 5d10a8e..cded872 100644
--- a/kconfig/conf.c
+++ b/kconfig/conf.c
@@ -67,10 +67,10 @@ static void strip(char *str)
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");
}
}