summaryrefslogtreecommitdiff
path: root/scripts
authorcniehaus <cniehaus>2003-03-22 20:35:57 (UTC)
committer cniehaus <cniehaus>2003-03-22 20:35:57 (UTC)
commitc3b01d2abd00b82b821604827987f2becccf5233 (patch) (side-by-side diff)
tree8e361d2d427d050f045da5a1e0e16ff715a6fecf /scripts
parent9efbe52ebc970b52ed0051a5d05c0105a88b844c (diff)
downloadopie-c3b01d2abd00b82b821604827987f2becccf5233.zip
opie-c3b01d2abd00b82b821604827987f2becccf5233.tar.gz
opie-c3b01d2abd00b82b821604827987f2becccf5233.tar.bz2
@@ -772,7 +772,7 @@ int main(int ac, char **av)
printf("\n\n" "*** End of Opie configuration.\n" "*** Check the top-level Makefile for additional configuration.\n" - "*** Next, you may run 'makee'.\n\n"); + "*** Next, you may run 'make'.\n\n"); } else printf("\n\nYour Opie configuration changes were NOT saved.\n\n");
Diffstat (limited to 'scripts') (more/less context) (ignore 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
@@ -727,54 +727,54 @@ static void conf_save(void)
}
static void conf_cleanup(void)
{
tcsetattr(1, TCSAFLUSH, &ios_org);
unlink(".help.tmp");
unlink("lxdialog.scrltmp");
}
int main(int ac, char **av)
{
struct symbol *sym;
char *mode;
int stat;
conf_parse(av[1]);
conf_read(NULL);
sym = sym_lookup("KERNELRELEASE", 0);
sym_calc_value(sym);
sprintf(menu_backtitle, "Opie %s Configuration",
sym_get_string_value(sym));
mode = getenv("MENUCONFIG_MODE");
if (mode) {
if (!strcasecmp(mode, "single_menu"))
single_menu_mode = 1;
}
tcgetattr(1, &ios_org);
atexit(conf_cleanup);
init_wsize();
conf(&rootmenu);
do {
cprint_init();
cprint("--yesno");
cprint("Do you wish to save your new configuration?");
cprint("5");
cprint("60");
stat = exec_conf();
} while (stat < 0);
if (stat == 0) {
conf_write(NULL);
printf("\n\n"
"*** End of Opie configuration.\n"
"*** Check the top-level Makefile for additional configuration.\n"
- "*** Next, you may run 'makee'.\n\n");
+ "*** Next, you may run 'make'.\n\n");
} else
printf("\n\nYour Opie configuration changes were NOT saved.\n\n");
return 0;
}