diff options
author | Denys Vlasenko | 2010-03-28 20:01:31 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-03-28 20:01:31 +0200 |
commit | 58cdca3984beb4e1019ef5ccf1dd7361f032a9a6 (patch) | |
tree | 922928fdb79cbdb6a02ffbeab7948c03ad501656 /applets | |
parent | e52b735231bda70d811e4f9ef0e21fb2c7af96a2 (diff) | |
download | busybox-58cdca3984beb4e1019ef5ccf1dd7361f032a9a6.zip busybox-58cdca3984beb4e1019ef5ccf1dd7361f032a9a6.tar.gz |
apply post-1.16.0 fixes, bump version to 1.16.11_16_1
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'applets')
-rw-r--r-- | applets/applet_tables.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/applets/applet_tables.c b/applets/applet_tables.c index e67f017..e48be46 100644 --- a/applets/applet_tables.c +++ b/applets/applet_tables.c @@ -79,6 +79,7 @@ int main(int argc, char **argv) } printf("\n"); + printf("#ifndef SKIP_definitions\n"); printf("const char applet_names[] ALIGN1 = \"\"\n"); for (i = 0; i < NUM_APPLETS; i++) { printf("\"%s\" \"\\0\"\n", applets[i].name); @@ -120,9 +121,10 @@ int main(int argc, char **argv) printf("0x%02x,\n", v); i++; } - printf("};\n\n"); + printf("};\n"); #endif - + printf("#endif /* SKIP_definitions */\n"); + printf("\n"); printf("#define MAX_APPLET_NAME_LEN %u\n", MAX_APPLET_NAME_LEN); return 0; |