aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-01-04 20:10:51 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-01-04 20:10:51 +0000
commit9cd30d30a0d7340524ba8223dc9d4088eb93a1d6 (patch)
tree4795e4117db0b0f127735674bfb09e7b3ba5045a
parent83c44229d24b1e09c772c8e8e0ee4abad78139a6 (diff)
downloadbusybox-9cd30d30a0d7340524ba8223dc9d4088eb93a1d6.tar.gz
Makefile.help: removing allbareconfig target from help
applet_tables: fix allnoconfig
-rw-r--r--Makefile.help1
-rw-r--r--applets/applet_tables.c2
2 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.help b/Makefile.help
index 513c10c4e..f95740365 100644
--- a/Makefile.help
+++ b/Makefile.help
@@ -16,7 +16,6 @@ help:
@echo 'Configuration:'
@echo ' allnoconfig - disable all symbols in .config'
@echo ' allyesconfig - enable all symbols in .config (see defconfig)'
- @echo ' allbareconfig - enable all applets without any sub-features'
@echo ' config - text based configurator (of last resort)'
@echo ' defconfig - set .config to largest generic configuration'
@echo ' menuconfig - interactive curses-based configurator'
diff --git a/applets/applet_tables.c b/applets/applet_tables.c
index c16df06a7..3945f7c51 100644
--- a/applets/applet_tables.c
+++ b/applets/applet_tables.c
@@ -71,7 +71,7 @@ int main(int argc, char **argv)
puts("/* This is a generated file, don't edit */");
- puts("const char applet_names[] ALIGN1 =");
+ puts("const char applet_names[] ALIGN1 = \"\" \n");
for (i = 0; i < NUM_APPLETS; i++) {
printf("\"%s\" \"\\0\"\n", applets[i].name);
}