[PATCH] Allow "busybox " to work when busybox is disabled

Tue, 07 Jun 2016 02:26:53 -0700

A recent commit made it possible to disable BusyBox's --install
and --list options.  However it also stopped "busybox <applet>
<params>" from working.

Signed-off-by: Ron Yorston <[email protected]>
---
 libbb/appletlib.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/libbb/appletlib.c b/libbb/appletlib.c
index 281123c..b6fe1da 100644
--- a/libbb/appletlib.c
+++ b/libbb/appletlib.c
@@ -956,6 +956,10 @@ int main(int argc UNUSED_PARAM, char **argv)
 #else
        lbb_prepare("busybox" IF_FEATURE_INDIVIDUAL(, argv));
 
+#if !ENABLE_BUSYBOX
+       if (argv[1] && is_prefixed_with(bb_basename(argv[0]), "busybox"))
+               argv++;
+#endif
        applet_name = argv[0];
        if (applet_name[0] == '-')
                applet_name++;
-- 
2.5.5

_______________________________________________
busybox mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to