diff options
author | Jim Meyering <jim@meyering.net> | 2007-02-02 18:58:41 +0100 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-03-29 21:37:06 +0200 |
commit | c6922b6f7e3ed8c0d565f588df3bd4daf6635f2b (patch) | |
tree | 0bbb38768b5b55c76eeadc17076f5629cc4c8f5d /tests | |
parent | c2bbd117f51ca2e765100946fe20b67379ce9e27 (diff) | |
download | coreutils-c6922b6f7e3ed8c0d565f588df3bd4daf6635f2b.tar.xz |
* src/runcon.c: New program.
* src/Makefile.am (bin_PROGRAMS): Add runcon.
(runcon_LDADD): Define.
* README: Add runcon to the list of programs.
* AUTHORS: Add this: runcon: Russell Coker
* tests/help-version: Add runcon as an exception.
* man/Makefile.am (dist_man_MANS): Add runcon.1.
(runcon.1): New dependency.
* po/POTFILES.in: Add src/runcon.c.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/help-version | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/help-version b/tests/help-version index d3c9bfb18..3dea4d126 100755 --- a/tests/help-version +++ b/tests/help-version @@ -72,6 +72,7 @@ for lang in C fr da; do # Skip `test'; it doesn't accept --help or --version. test $i = test && continue; test $i = chcon && continue; + test $i = runcon && continue; # false fails even when invoked with --help or --version. if test $i = false; then @@ -197,7 +198,7 @@ lbracket_args=": ]" for i in $all_programs; do # Skip these. - case $i in chroot|stty|tty|false|chcon) continue;; esac + case $i in chroot|stty|tty|false|chcon|runcon) continue;; esac rm -rf $tmp_in $tmp_in2 $tmp_dir $tmp_out echo > $tmp_in |