aboutsummaryrefslogtreecommitdiff
path: root/debianutils
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2013-02-28 12:25:49 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-02-28 12:25:49 +0100
commit5d1c599d7611b6202190460ebc685e5fb1ae61ea (patch)
treea7961323db8fa244a7f9630f476ecf0ce51e9703 /debianutils
parentde6f14800675cd0401106876da81da7618de71c6 (diff)
downloadbusybox-w32-5d1c599d7611b6202190460ebc685e5fb1ae61ea.tar.gz
busybox-w32-5d1c599d7611b6202190460ebc685e5fb1ae61ea.tar.bz2
busybox-w32-5d1c599d7611b6202190460ebc685e5fb1ae61ea.zip
run-parts: fix unicode creep in --help
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'debianutils')
-rw-r--r--debianutils/run_parts.c6
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 @@
25 25
26//usage:#define run_parts_trivial_usage 26//usage:#define run_parts_trivial_usage
27//usage: "[-a ARG]... [-u UMASK] " 27//usage: "[-a ARG]... [-u UMASK] "
28//usage: IF_FEATURE_RUN_PARTS_LONG_OPTIONS("[--reverse] [--test] [-−exit−on−error] "IF_FEATURE_RUN_PARTS_FANCY("[--list] ")) 28//usage: IF_FEATURE_RUN_PARTS_LONG_OPTIONS("[--reverse] [--test] [--exit-on-error] "IF_FEATURE_RUN_PARTS_FANCY("[--list] "))
29//usage: "DIRECTORY" 29//usage: "DIRECTORY"
30//usage:#define run_parts_full_usage "\n\n" 30//usage:#define run_parts_full_usage "\n\n"
31//usage: "Run a bunch of scripts in DIRECTORY\n" 31//usage: "Run a bunch of scripts in DIRECTORY\n"
32//usage: "\n -a ARG Pass ARG as argument to scripts" 32//usage: "\n -a ARG Pass ARG as argument to scripts"
33//usage: "\n -u UMASK Set UMASK before running scripts" 33//usage: "\n -u UMASK Set UMASK before running scripts"
34//usage: IF_FEATURE_RUN_PARTS_LONG_OPTIONS( 34//usage: IF_FEATURE_RUN_PARTS_LONG_OPTIONS(
35//usage: "\n -reverse Reverse execution order" 35//usage: "\n --reverse Reverse execution order"
36//usage: "\n --test Dry run" 36//usage: "\n --test Dry run"
37//usage: "\n -exitonerror Exit if a script exits with non-zero" 37//usage: "\n --exit-on-error Exit if a script exits with non-zero"
38//usage: IF_FEATURE_RUN_PARTS_FANCY( 38//usage: IF_FEATURE_RUN_PARTS_FANCY(
39//usage: "\n --list Print names of matching files even if they are not executable" 39//usage: "\n --list Print names of matching files even if they are not executable"
40//usage: ) 40//usage: )