diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-01-18 13:58:01 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-01-18 13:58:01 +0100 |
commit | b9f2d9f7d9b4a9b6fbb6a28a8c0bcf8e0e3b1704 (patch) | |
tree | 7c989f0cd07bf8e7923a3d7d831e72048807b63b /findutils | |
parent | 3b5acaa4323bd165077e60098af94ad9750d62fd (diff) | |
download | busybox-b9f2d9f7d9b4a9b6fbb6a28a8c0bcf8e0e3b1704.tar.gz |
mass removal of underscores from _BB_DIR_foo and _BB_SUID_foo
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/find.c | 2 | ||||
-rw-r--r-- | findutils/grep.c | 6 | ||||
-rw-r--r-- | findutils/xargs.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/findutils/find.c b/findutils/find.c index dd00f37ea..f85381b47 100644 --- a/findutils/find.c +++ b/findutils/find.c @@ -53,7 +53,7 @@ * diff -u /tmp/std_find /tmp/bb_find && echo Identical */ -//applet:IF_FIND(APPLET_NOEXEC(find, find, _BB_DIR_USR_BIN, _BB_SUID_DROP, find)) +//applet:IF_FIND(APPLET_NOEXEC(find, find, BB_DIR_USR_BIN, BB_SUID_DROP, find)) //kbuild:lib-$(CONFIG_FIND) += find.o diff --git a/findutils/grep.c b/findutils/grep.c index ff6742a69..e7116e4c9 100644 --- a/findutils/grep.c +++ b/findutils/grep.c @@ -18,9 +18,9 @@ * (C) 2006 Jac Goudsmit added -o option */ -//applet:IF_GREP(APPLET(grep, _BB_DIR_BIN, _BB_SUID_DROP)) -//applet:IF_FEATURE_GREP_EGREP_ALIAS(APPLET_ODDNAME(egrep, grep, _BB_DIR_BIN, _BB_SUID_DROP, egrep)) -//applet:IF_FEATURE_GREP_FGREP_ALIAS(APPLET_ODDNAME(fgrep, grep, _BB_DIR_BIN, _BB_SUID_DROP, fgrep)) +//applet:IF_GREP(APPLET(grep, BB_DIR_BIN, BB_SUID_DROP)) +//applet:IF_FEATURE_GREP_EGREP_ALIAS(APPLET_ODDNAME(egrep, grep, BB_DIR_BIN, BB_SUID_DROP, egrep)) +//applet:IF_FEATURE_GREP_FGREP_ALIAS(APPLET_ODDNAME(fgrep, grep, BB_DIR_BIN, BB_SUID_DROP, fgrep)) //kbuild:lib-$(CONFIG_GREP) += grep.o diff --git a/findutils/xargs.c b/findutils/xargs.c index d73fad9de..0ec80f809 100644 --- a/findutils/xargs.c +++ b/findutils/xargs.c @@ -15,7 +15,7 @@ * http://www.opengroup.org/onlinepubs/007904975/utilities/xargs.html */ -//applet:IF_XARGS(APPLET_NOEXEC(xargs, xargs, _BB_DIR_USR_BIN, _BB_SUID_DROP, xargs)) +//applet:IF_XARGS(APPLET_NOEXEC(xargs, xargs, BB_DIR_USR_BIN, BB_SUID_DROP, xargs)) //kbuild:lib-$(CONFIG_XARGS) += xargs.o |