From dee82b8a261064abb2fad8dac17161b9804b39f2 Mon Sep 17 00:00:00 2001 From: 1ridic Date: Mon, 25 Sep 2023 13:39:02 +0800 Subject: [PATCH] [tools] Correct prompt message After running "menuconfig", a message prompting you to run "make" appears, which can be confusing. Correct prompt message to make it clear. --- tools/kconfig-frontends/frontends/mconf/mconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/kconfig-frontends/frontends/mconf/mconf.c b/tools/kconfig-frontends/frontends/mconf/mconf.c index 23b19fe951..98b719350c 100644 --- a/tools/kconfig-frontends/frontends/mconf/mconf.c +++ b/tools/kconfig-frontends/frontends/mconf/mconf.c @@ -994,7 +994,7 @@ static int handle_exit(void) if (!silent) printf(_("\n\n" "*** End of the configuration.\n" - "*** Execute 'make' to start the build or try 'make help'." + "*** Execute 'scons' to start the build or try 'scons --help'." "\n\n")); res = 0; break;