aboutsummaryrefslogtreecommitdiff
path: root/archival/ar.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-21 09:50:55 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-21 09:50:55 +0200
commit72089cf6b4a77214ec4fd21d5ee5bf56958781cb (patch)
treea5cd9d8f47e909834d3dbc44f895556e68bcf18f /archival/ar.c
parent75d151e31d135ebab083307ded4e9b98970baa75 (diff)
downloadbusybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.gz
busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.bz2
busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.zip
config: deindent all help texts
Those two spaces after tab have no effect, and always a nuisance when editing. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/ar.c')
-rw-r--r--archival/ar.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/archival/ar.c b/archival/ar.c
index 8e4d81eeb..2886d155b 100644
--- a/archival/ar.c
+++ b/archival/ar.c
@@ -21,29 +21,29 @@
21//config: bool "ar (9.5 kb)" 21//config: bool "ar (9.5 kb)"
22//config: default n # needs to be improved to be able to replace binutils ar 22//config: default n # needs to be improved to be able to replace binutils ar
23//config: help 23//config: help
24//config: ar is an archival utility program used to create, modify, and 24//config: ar is an archival utility program used to create, modify, and
25//config: extract contents from archives. In practice, it is used exclusively 25//config: extract contents from archives. In practice, it is used exclusively
26//config: for object module archives used by compilers. 26//config: for object module archives used by compilers.
27//config: 27//config:
28//config: Unless you have a specific application which requires ar, you should 28//config: Unless you have a specific application which requires ar, you should
29//config: probably say N here: most compilers come with their own ar utility. 29//config: probably say N here: most compilers come with their own ar utility.
30//config: 30//config:
31//config:config FEATURE_AR_LONG_FILENAMES 31//config:config FEATURE_AR_LONG_FILENAMES
32//config: bool "Support long filenames (not needed for debs)" 32//config: bool "Support long filenames (not needed for debs)"
33//config: default y 33//config: default y
34//config: depends on AR 34//config: depends on AR
35//config: help 35//config: help
36//config: By default the ar format can only store the first 15 characters 36//config: By default the ar format can only store the first 15 characters
37//config: of the filename, this option removes that limitation. 37//config: of the filename, this option removes that limitation.
38//config: It supports the GNU ar long filename method which moves multiple long 38//config: It supports the GNU ar long filename method which moves multiple long
39//config: filenames into a the data section of a new ar entry. 39//config: filenames into a the data section of a new ar entry.
40//config: 40//config:
41//config:config FEATURE_AR_CREATE 41//config:config FEATURE_AR_CREATE
42//config: bool "Support archive creation" 42//config: bool "Support archive creation"
43//config: default y 43//config: default y
44//config: depends on AR 44//config: depends on AR
45//config: help 45//config: help
46//config: This enables archive creation (-c and -r) with busybox ar. 46//config: This enables archive creation (-c and -r) with busybox ar.
47 47
48//applet:IF_AR(APPLET(ar, BB_DIR_USR_BIN, BB_SUID_DROP)) 48//applet:IF_AR(APPLET(ar, BB_DIR_USR_BIN, BB_SUID_DROP))
49//kbuild:lib-$(CONFIG_AR) += ar.o 49//kbuild:lib-$(CONFIG_AR) += ar.o