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 /init | |
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 'init')
-rw-r--r-- | init/bootchartd.c | 2 | ||||
-rw-r--r-- | init/halt.c | 6 | ||||
-rw-r--r-- | init/init.c | 4 | ||||
-rw-r--r-- | init/mesg.c | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/init/bootchartd.c b/init/bootchartd.c index ac3f261c8..009e2690c 100644 --- a/init/bootchartd.c +++ b/init/bootchartd.c @@ -3,7 +3,7 @@ * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ -//applet:IF_BOOTCHARTD(APPLET(bootchartd, _BB_DIR_SBIN, _BB_SUID_DROP)) +//applet:IF_BOOTCHARTD(APPLET(bootchartd, BB_DIR_SBIN, BB_SUID_DROP)) //kbuild:lib-$(CONFIG_BOOTCHARTD) += bootchartd.o diff --git a/init/halt.c b/init/halt.c index 47f1ef7b2..f853ba4a1 100644 --- a/init/halt.c +++ b/init/halt.c @@ -7,9 +7,9 @@ * Licensed under GPLv2, see file LICENSE in this source tree. */ -//applet:IF_HALT(APPLET(halt, _BB_DIR_SBIN, _BB_SUID_DROP)) -//applet:IF_HALT(APPLET_ODDNAME(poweroff, halt, _BB_DIR_SBIN, _BB_SUID_DROP, poweroff)) -//applet:IF_HALT(APPLET_ODDNAME(reboot, halt, _BB_DIR_SBIN, _BB_SUID_DROP, reboot)) +//applet:IF_HALT(APPLET(halt, BB_DIR_SBIN, BB_SUID_DROP)) +//applet:IF_HALT(APPLET_ODDNAME(poweroff, halt, BB_DIR_SBIN, BB_SUID_DROP, poweroff)) +//applet:IF_HALT(APPLET_ODDNAME(reboot, halt, BB_DIR_SBIN, BB_SUID_DROP, reboot)) //kbuild:lib-$(CONFIG_HALT) += halt.o diff --git a/init/init.c b/init/init.c index a2cc3b5f5..d8e180746 100644 --- a/init/init.c +++ b/init/init.c @@ -9,8 +9,8 @@ * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ -//applet:IF_INIT(APPLET(init, _BB_DIR_SBIN, _BB_SUID_DROP)) -//applet:IF_FEATURE_INITRD(APPLET_ODDNAME(linuxrc, init, _BB_DIR_ROOT, _BB_SUID_DROP, linuxrc)) +//applet:IF_INIT(APPLET(init, BB_DIR_SBIN, BB_SUID_DROP)) +//applet:IF_FEATURE_INITRD(APPLET_ODDNAME(linuxrc, init, BB_DIR_ROOT, BB_SUID_DROP, linuxrc)) //kbuild:lib-$(CONFIG_INIT) += init.o diff --git a/init/mesg.c b/init/mesg.c index b6fd070e1..676ca2e24 100644 --- a/init/mesg.c +++ b/init/mesg.c @@ -7,7 +7,7 @@ * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ -//applet:IF_MESG(APPLET(mesg, _BB_DIR_USR_BIN, _BB_SUID_DROP)) +//applet:IF_MESG(APPLET(mesg, BB_DIR_USR_BIN, BB_SUID_DROP)) //kbuild:lib-$(CONFIG_MESG) += mesg.o |