aboutsummaryrefslogtreecommitdiff
path: root/editors/sed.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-11-13 12:45:33 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-11-13 12:45:33 +0100
commit73225b6d6e14f63e048fd95b504a2d909684699f (patch)
treefa4e412ed699e2e4abbc62d810cd8a9980055d5a /editors/sed.c
parentf200f732f4d04a26814f109be8db2b6510e7127c (diff)
downloadbusybox-w32-73225b6d6e14f63e048fd95b504a2d909684699f.tar.gz
busybox-w32-73225b6d6e14f63e048fd95b504a2d909684699f.tar.bz2
busybox-w32-73225b6d6e14f63e048fd95b504a2d909684699f.zip
switch editors/* to embedded-in-source kbuild system
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors/sed.c')
-rw-r--r--editors/sed.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/sed.c b/editors/sed.c
index 971375884..777f38308 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -58,6 +58,17 @@
58 * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sed.html 58 * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sed.html
59 */ 59 */
60 60
61//config:config SED
62//config: bool "sed"
63//config: default y
64//config: help
65//config: sed is used to perform text transformations on a file
66//config: or input from a pipeline.
67
68//kbuild:lib-$(CONFIG_SED) += sed.o
69
70//applet:IF_SED(APPLET(sed, BB_DIR_BIN, BB_SUID_DROP))
71
61//usage:#define sed_trivial_usage 72//usage:#define sed_trivial_usage
62//usage: "[-inrE] [-f FILE]... [-e CMD]... [FILE]...\n" 73//usage: "[-inrE] [-f FILE]... [-e CMD]... [FILE]...\n"
63//usage: "or: sed [-inrE] CMD [FILE]..." 74//usage: "or: sed [-inrE] CMD [FILE]..."