diff options
author | Denys Vlasenko | 2013-11-13 12:45:33 +0100 |
---|---|---|
committer | Denys Vlasenko | 2013-11-13 12:45:33 +0100 |
commit | 73225b6d6e14f63e048fd95b504a2d909684699f (patch) | |
tree | fa4e412ed699e2e4abbc62d810cd8a9980055d5a /editors/sed.c | |
parent | f200f732f4d04a26814f109be8db2b6510e7127c (diff) | |
download | busybox-73225b6d6e14f63e048fd95b504a2d909684699f.zip busybox-73225b6d6e14f63e048fd95b504a2d909684699f.tar.gz |
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.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/sed.c b/editors/sed.c index 9713758..777f383 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -58,6 +58,17 @@ * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sed.html */ +//config:config SED +//config: bool "sed" +//config: default y +//config: help +//config: sed is used to perform text transformations on a file +//config: or input from a pipeline. + +//kbuild:lib-$(CONFIG_SED) += sed.o + +//applet:IF_SED(APPLET(sed, BB_DIR_BIN, BB_SUID_DROP)) + //usage:#define sed_trivial_usage //usage: "[-inrE] [-f FILE]... [-e CMD]... [FILE]...\n" //usage: "or: sed [-inrE] CMD [FILE]..." |