Update the apelink manual after commit d53c335

The `-s` option changed its meaning, but the docs weren't updated.
This commit is contained in:
Ivan Komarov 2024-02-11 02:57:47 +01:00
parent 7d0d577442
commit bfe7eb1e41

View file

@ -102,7 +102,7 @@
" - 32: freebsd\n" \ " - 32: freebsd\n" \
" - 64: netbsd\n" \ " - 64: netbsd\n" \
"\n" \ "\n" \
" for example, `-s 0b1110001` may be used to\n" \ " for example, `-V 0b1110001` may be used to\n" \
" produce ELF binaries that only support the\n" \ " produce ELF binaries that only support the\n" \
" truly open unix systems. in this case when\n" \ " truly open unix systems. in this case when\n" \
" a single input executable is supplied, the\n" \ " a single input executable is supplied, the\n" \
@ -120,8 +120,8 @@
" also pass strings in a variety of intuitive\n" \ " also pass strings in a variety of intuitive\n" \
" supported representations. for example, bsd\n" \ " supported representations. for example, bsd\n" \
" will enable freebsd+netbsd+openbsd and that\n" \ " will enable freebsd+netbsd+openbsd and that\n" \
" string too is a legal input. the -s flag is\n" \ " string too is a legal input. the -V flag is\n" \
" also repeatable, e.g. `-s nt -s xnu` to use\n" \ " also repeatable, e.g. `-V nt -V xnu` to use\n" \
" the union of the two.\n" \ " the union of the two.\n" \
"\n" \ "\n" \
" since the support vector controls the file\n" \ " since the support vector controls the file\n" \
@ -988,7 +988,7 @@ static void GetOpts(int argc, char *argv[]) {
if (ParseSupportVector(optarg, &bits)) { if (ParseSupportVector(optarg, &bits)) {
support_vector |= bits; support_vector |= bits;
} else { } else {
Die(prog, "unrecognized token passed to -s support vector flag"); Die(prog, "unrecognized token passed to -V support vector flag");
exit(1); exit(1);
} }
got_support_vector = true; got_support_vector = true;