diff options
author | Rob Landley | 2006-05-31 19:36:04 +0000 |
---|---|---|
committer | Rob Landley | 2006-05-31 19:36:04 +0000 |
commit | 8abbee474c4eff45bdc2cacb59047f466e1d6ae1 (patch) | |
tree | 35f25489cf48f7a80e3545472a84d534ef9915a3 /coreutils/Makefile.in | |
parent | 9a5686b605a4dfe2f24660940e309bb444fe5f3f (diff) | |
download | busybox-8abbee474c4eff45bdc2cacb59047f466e1d6ae1.zip busybox-8abbee474c4eff45bdc2cacb59047f466e1d6ae1.tar.gz |
Add catv (separate applet instead of cat -v). Also cleanup cat.c comments,
the following of which (from cat.c) belongs in svn history instead of the
source code:
/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
*
* This is a new implementation of 'cat' which aims to be SUSv3 compliant.
*
* Changes from the previous implementation include:
* 1) Multiple '-' args are accepted as required by SUSv3. The previous
* implementation would close stdin and segfault on a subsequent '-'.
* 2) The '-u' options is required by SUSv3. Note that the specified
* behavior for '-u' is done by default, so all we need do is accept
* the option.
*/
Diffstat (limited to 'coreutils/Makefile.in')
-rw-r--r-- | coreutils/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/coreutils/Makefile.in b/coreutils/Makefile.in index 24eee0b..50c090f 100644 --- a/coreutils/Makefile.in +++ b/coreutils/Makefile.in @@ -14,6 +14,7 @@ COREUTILS-y:= COREUTILS-$(CONFIG_BASENAME) += basename.o COREUTILS-$(CONFIG_CAL) += cal.o COREUTILS-$(CONFIG_CAT) += cat.o +COREUTILS-$(CONFIG_CATV) += catv.o COREUTILS-$(CONFIG_CHGRP) += chgrp.o COREUTILS-$(CONFIG_CHMOD) += chmod.o COREUTILS-$(CONFIG_CHOWN) += chown.o |