From 1497484839efd4c57d63c07e2b92413193a3977f Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 23 Mar 2010 01:08:26 +0100 Subject: ash,hush: make it possible to build them individually Signed-off-by: Denys Vlasenko --- applets/applet_tables.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'applets') diff --git a/applets/applet_tables.c b/applets/applet_tables.c index e67f017e7..e48be4682 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; -- cgit v1.2.3