diff options
author | Karel Zak <kzak@redhat.com> | 2007-02-08 12:38:25 +0100 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2007-02-08 12:38:25 +0100 |
commit | b8d1314dc6ceeb998632102d5f93cda5e2548f8d (patch) | |
tree | cfe10b664e00613db5fc2d6bd4b585600e3cdcee /text-utils | |
parent | 061999ee0d9bde9e79f4735283dfd1382313bccf (diff) | |
download | util-linux-b8d1314dc6ceeb998632102d5f93cda5e2548f8d.tar.gz |
build-sys: fix README filenames and add missing files to EXTRA_DISTs
Also, the patch makes "make mrproper" more robust.
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'text-utils')
-rw-r--r-- | text-utils/Makefile.am | 2 | ||||
-rw-r--r-- | text-utils/README.reset | 20 | ||||
-rwxr-xr-x | text-utils/reset | 11 |
3 files changed, 1 insertions, 32 deletions
diff --git a/text-utils/Makefile.am b/text-utils/Makefile.am index 3c8b33bc..f3c3dca8 100644 --- a/text-utils/Makefile.am +++ b/text-utils/Makefile.am @@ -1,6 +1,6 @@ include $(top_srcdir)/config/include-Makefile.am -EXTRA_DIST = README.clear README.col README.pg README.reset LICENSE.pg +EXTRA_DIST = README.* LICENSE.* usrbinexec_PROGRAMS = col colcrt colrm column hexdump rev line tailf diff --git a/text-utils/README.reset b/text-utils/README.reset deleted file mode 100644 index 8060d265..00000000 --- a/text-utils/README.reset +++ /dev/null @@ -1,20 +0,0 @@ -RedHat and SuSE take the program reset from ncurses, - where reset is a name for the program tset. - It is approximately equivalent to - stty sane; tputs rs1; tputs rs2; tputs rf - with `tputs rf' replaced by `tputs if' when there is an - init_file but no reset_file. In the comments it wonders - whether also sending rs3, rmacs, rmul, rmm might be a good idea. - -Slackware uses the small script given here. - The part `echo -e \\033c' is the canonical reset of the kernel - console status, and is equivalent to `tputs rs1' for a linux - terminal. - -So, both versions are approximately the same. - - -[A disadvantage of `echo -e \\033c' might be that it is potentially -wrong on a non-vt100, non-xterm, non-linux terminal. -An advantage is that there are terminfo entries for xterm around -that only use rs1=^O as reset, and then \Ec is much better.] diff --git a/text-utils/reset b/text-utils/reset deleted file mode 100755 index fb9834db..00000000 --- a/text-utils/reset +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -stty sane -tput clear -tput rmacs -tput rmm -tput rmso -tput rmul -tput rs1 -tput rs2 -tput rs3 -echo -e \\033c |