diff options
author | Ron Yorston <rmy@pobox.com> | 2025-01-14 09:52:58 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2025-01-14 12:22:55 +0000 |
commit | 85bbce87d6428fbc6a8bf7126988c4458a033727 (patch) | |
tree | a82e077df6058209055843a7fc80ac4100f267be /libbb | |
parent | 0e8bc6527c9d4b9af17e9b0f759b1ad12ae1bc35 (diff) | |
download | busybox-w32-85bbce87d6428fbc6a8bf7126988c4458a033727.tar.gz busybox-w32-85bbce87d6428fbc6a8bf7126988c4458a033727.tar.bz2 busybox-w32-85bbce87d6428fbc6a8bf7126988c4458a033727.zip |
make: support GNU/BSD suffixes and inference rules
The specification of inference rules in POSIX implies that only
suffixes starting with a period and containing no other periods
are to be considered.
In contrast, both GNU and BSD make allow suffixes to contain an
arbitrary number of periods, or none at all. Allow this as an
extension.
Adds 640-816 bytes.
(pdpmake GitHub issue 70)
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/appletlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index d6e042775..b1064d10a 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c | |||
@@ -933,7 +933,7 @@ int busybox_main(int argc UNUSED_PARAM, char **argv) | |||
933 | full_write1_str(" multi-call binary.\n"); /* reuse */ | 933 | full_write1_str(" multi-call binary.\n"); /* reuse */ |
934 | #endif | 934 | #endif |
935 | full_write1_str( | 935 | full_write1_str( |
936 | "BusyBox is copyrighted by many authors between 1998-2024.\n" | 936 | "BusyBox is copyrighted by many authors between 1998-2025.\n" |
937 | "Licensed under GPLv2. See source distribution for detailed\n" | 937 | "Licensed under GPLv2. See source distribution for detailed\n" |
938 | "copyright notices.\n" | 938 | "copyright notices.\n" |
939 | "\n" | 939 | "\n" |