diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2013-02-28 12:25:49 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-02-28 12:25:49 +0100 |
commit | 5d1c599d7611b6202190460ebc685e5fb1ae61ea (patch) | |
tree | a7961323db8fa244a7f9630f476ecf0ce51e9703 | |
parent | de6f14800675cd0401106876da81da7618de71c6 (diff) | |
download | busybox-5d1c599d7611b6202190460ebc685e5fb1ae61ea.tar.gz |
run-parts: fix unicode creep in --help
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | debianutils/run_parts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/debianutils/run_parts.c b/debianutils/run_parts.c index 916aa90e0..2c2b032be 100644 --- a/debianutils/run_parts.c +++ b/debianutils/run_parts.c @@ -25,16 +25,16 @@ //usage:#define run_parts_trivial_usage //usage: "[-a ARG]... [-u UMASK] " -//usage: IF_FEATURE_RUN_PARTS_LONG_OPTIONS("[--reverse] [--test] [-−exit−on−error] "IF_FEATURE_RUN_PARTS_FANCY("[--list] ")) +//usage: IF_FEATURE_RUN_PARTS_LONG_OPTIONS("[--reverse] [--test] [--exit-on-error] "IF_FEATURE_RUN_PARTS_FANCY("[--list] ")) //usage: "DIRECTORY" //usage:#define run_parts_full_usage "\n\n" //usage: "Run a bunch of scripts in DIRECTORY\n" //usage: "\n -a ARG Pass ARG as argument to scripts" //usage: "\n -u UMASK Set UMASK before running scripts" //usage: IF_FEATURE_RUN_PARTS_LONG_OPTIONS( -//usage: "\n -−reverse Reverse execution order" +//usage: "\n --reverse Reverse execution order" //usage: "\n --test Dry run" -//usage: "\n -−exit−on−error Exit if a script exits with non-zero" +//usage: "\n --exit-on-error Exit if a script exits with non-zero" //usage: IF_FEATURE_RUN_PARTS_FANCY( //usage: "\n --list Print names of matching files even if they are not executable" //usage: ) |