diff options
author | Ron Yorston <rmy@pobox.com> | 2022-08-01 12:45:10 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2022-08-01 12:51:37 +0100 |
commit | 67a630e5af1ace1dd528ea9652ee69102b3136c3 (patch) | |
tree | c918ed81ad1791c415a811d63d2f8771a7dd6ef7 /archival/ar.c | |
parent | b0f279a48f5f7e57b6f6e941e4b59e9a1bc54548 (diff) | |
download | busybox-w32-67a630e5af1ace1dd528ea9652ee69102b3136c3.tar.gz busybox-w32-67a630e5af1ace1dd528ea9652ee69102b3136c3.tar.bz2 busybox-w32-67a630e5af1ace1dd528ea9652ee69102b3136c3.zip |
make: new applet
This is an experimental implementation of make for busybox-w32,
based on my public domain POSIX make:
https://frippery.org/make/
(GitHub issue #44)
Diffstat (limited to 'archival/ar.c')
-rw-r--r-- | archival/ar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/ar.c b/archival/ar.c index beccab217..b5565c936 100644 --- a/archival/ar.c +++ b/archival/ar.c | |||
@@ -30,12 +30,12 @@ | |||
30 | //config:config FEATURE_AR_LONG_FILENAMES | 30 | //config:config FEATURE_AR_LONG_FILENAMES |
31 | //config: bool "Support long filenames (not needed for debs)" | 31 | //config: bool "Support long filenames (not needed for debs)" |
32 | //config: default y | 32 | //config: default y |
33 | //config: depends on AR | 33 | //config: depends on AR || MAKE |
34 | //config: help | 34 | //config: help |
35 | //config: By default the ar format can only store the first 15 characters | 35 | //config: By default the ar format can only store the first 15 characters |
36 | //config: of the filename, this option removes that limitation. | 36 | //config: of the filename, this option removes that limitation. |
37 | //config: It supports the GNU ar long filename method which moves multiple long | 37 | //config: It supports the GNU ar long filename method which moves multiple long |
38 | //config: filenames into a the data section of a new ar entry. | 38 | //config: filenames into the data section of a new ar entry. |
39 | //config: | 39 | //config: |
40 | //config:config FEATURE_AR_CREATE | 40 | //config:config FEATURE_AR_CREATE |
41 | //config: bool "Support archive creation" | 41 | //config: bool "Support archive creation" |