diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-04-20 21:00:14 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-04-20 21:00:14 +0000 |
commit | 320b38dc4fd903d1668b448276059041fa6c8af3 (patch) | |
tree | d80f67a6d4781eb99fb309187a799bdffff119dd /scripts/config/conf.c | |
parent | 8cc7b94ab02545a6ba6ec042df6e6821941d0e93 (diff) | |
download | upstream-320b38dc4fd903d1668b448276059041fa6c8af3.tar.gz upstream-320b38dc4fd903d1668b448276059041fa6c8af3.tar.bz2 upstream-320b38dc4fd903d1668b448276059041fa6c8af3.zip |
modify the kconfig system for openwrt
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3683 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts/config/conf.c')
-rw-r--r-- | scripts/config/conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/config/conf.c b/scripts/config/conf.c index 10eeae53d8..cb2093691e 100644 --- a/scripts/config/conf.c +++ b/scripts/config/conf.c @@ -570,7 +570,7 @@ int main(int ac, char **av) case ask_silent: if (stat(".config", &tmpstat)) { printf(_("***\n" - "*** You have not yet configured your kernel!\n" + "*** You have not yet configured your build!\n" "***\n" "*** Please run some configurator (e.g. \"make oldconfig\" or\n" "*** \"make menuconfig\" or \"make xconfig\").\n" @@ -619,7 +619,7 @@ int main(int ac, char **av) check_conf(&rootmenu); } while (conf_cnt); if (conf_write(NULL)) { - fprintf(stderr, _("\n*** Error during writing of the kernel configuration.\n\n")); + fprintf(stderr, _("\n*** Error during writing of the build configuration.\n\n")); return 1; } return 0; |