Remove remnants of disabled "length" applet
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 23 Nov 2016 13:54:38 +0000 (14:54 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 23 Nov 2016 13:54:38 +0000 (14:54 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
coreutils/Config.src
coreutils/Kbuild.src
coreutils/length.c.disabled [deleted file]
include/applets.src.h

index a35198a3bb48277c2c1b3e616535a58bc1e5213f..c056320f86279ede6fd491ab1e91dfbd1c96b07b 100644 (file)
@@ -7,12 +7,6 @@ menu "Coreutils"
 
 INSERT
 
-####config LENGTH
-####   bool "length"
-####   default y
-####   help
-####     length is used to print out the length of a specified string.
-
 comment "Common options"
 
 config FEATURE_VERBOSE
index c93aa63a147f6db29f9b06f04c343f1d40d2c620..8e2c097a32a85b3ed171dbdd81b577cc0c57f489 100644 (file)
@@ -10,8 +10,6 @@ lib-y:=
 
 INSERT
 
-#lib-$(CONFIG_LENGTH) += length.o
-
 lib-$(CONFIG_MORE)      += cat.o   # more uses it if stdout isn't a tty
 lib-$(CONFIG_LESS)      += cat.o   # less too
 lib-$(CONFIG_CRONTAB)   += cat.o   # crontab -l
diff --git a/coreutils/length.c.disabled b/coreutils/length.c.disabled
deleted file mode 100644 (file)
index aee898d..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/* vi: set sw=4 ts=4: */
-/*
- * Licensed under GPLv2, see file LICENSE in this source tree.
- */
-
-/* BB_AUDIT SUSv3 N/A -- Apparently a busybox (obsolete?) extension. */
-
-//usage:#define length_trivial_usage
-//usage:       "STRING"
-//usage:#define length_full_usage "\n\n"
-//usage:       "Print STRING's length"
-//usage:
-//usage:#define length_example_usage
-//usage:       "$ length Hello\n"
-//usage:       "5\n"
-
-#include "libbb.h"
-
-/* This is a NOFORK applet. Be very careful! */
-
-int length_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
-int length_main(int argc, char **argv)
-{
-       if ((argc != 2) || (**(++argv) == '-')) {
-               bb_show_usage();
-       }
-
-       printf("%u\n", (unsigned)strlen(*argv));
-
-       return fflush_all();
-}
index 82907e2a535d29408bcef728cecf6c0fc3c7df43..c72dca8496f8e5a6dce8c787d4d23dfe5c153f72 100644 (file)
@@ -82,7 +82,6 @@ IF_DUMPLEASES(APPLET(dumpleases, BB_DIR_USR_BIN, BB_SUID_DROP))
 //IF_E2FSCK(APPLET_ODDNAME(fsck.ext3, e2fsck, BB_DIR_SBIN, BB_SUID_DROP, fsck_ext3))
 IF_GETENFORCE(APPLET(getenforce, BB_DIR_USR_SBIN, BB_SUID_DROP))
 IF_GETSEBOOL(APPLET(getsebool, BB_DIR_USR_SBIN, BB_SUID_DROP))
-//IF_LENGTH(APPLET_NOFORK(length, length, BB_DIR_USR_BIN, BB_SUID_DROP, length))
 IF_LOAD_POLICY(APPLET(load_policy, BB_DIR_USR_SBIN, BB_SUID_DROP))
 IF_MATCHPATHCON(APPLET(matchpathcon, BB_DIR_USR_SBIN, BB_SUID_DROP))
 //IF_PARSE(APPLET(parse, BB_DIR_USR_BIN, BB_SUID_DROP))