summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--scripts/kconfig/mconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c
index 26a94e7..6d82718 100644
--- a/scripts/kconfig/mconf.c
+++ b/scripts/kconfig/mconf.c
@@ -751,30 +751,30 @@ int main(int ac, char **av)
751 if (mode) { 751 if (mode) {
752 if (!strcasecmp(mode, "single_menu")) 752 if (!strcasecmp(mode, "single_menu"))
753 single_menu_mode = 1; 753 single_menu_mode = 1;
754 } 754 }
755 755
756 tcgetattr(1, &ios_org); 756 tcgetattr(1, &ios_org);
757 atexit(conf_cleanup); 757 atexit(conf_cleanup);
758 init_wsize(); 758 init_wsize();
759 conf(&rootmenu); 759 conf(&rootmenu);
760 760
761 do { 761 do {
762 cprint_init(); 762 cprint_init();
763 cprint("--yesno"); 763 cprint("--yesno");
764 cprint("Do you wish to save your new configuration?"); 764 cprint("Do you wish to save your new configuration?");
765 cprint("5"); 765 cprint("5");
766 cprint("60"); 766 cprint("60");
767 stat = exec_conf(); 767 stat = exec_conf();
768 } while (stat < 0); 768 } while (stat < 0);
769 769
770 if (stat == 0) { 770 if (stat == 0) {
771 conf_write(NULL); 771 conf_write(NULL);
772 printf("\n\n" 772 printf("\n\n"
773 "*** End of Opie configuration.\n" 773 "*** End of Opie configuration.\n"
774 "*** Check the top-level Makefile for additional configuration.\n" 774 "*** Check the top-level Makefile for additional configuration.\n"
775 "*** Next, you may run 'makee'.\n\n"); 775 "*** Next, you may run 'make'.\n\n");
776 } else 776 } else
777 printf("\n\nYour Opie configuration changes were NOT saved.\n\n"); 777 printf("\n\nYour Opie configuration changes were NOT saved.\n\n");
778 778
779 return 0; 779 return 0;
780} 780}