[hackers] [libzahl] Use ar(1)'s s-flag instead of invoking ranlib(1) || Tom Schwindl

2022-07-20 Thread git
commit 8aa2a900974b100672d1af89a97c1043372a446d Author: Tom Schwindl AuthorDate: Wed Jul 20 14:26:57 2022 + Commit: Mattias Andrée CommitDate: Thu Jul 21 01:26:34 2022 +0200 Use ar(1)'s s-flag instead of invoking ranlib(1) ranlib(1) is legacy and not even part of POSIX

[hackers] [libzahl] [PATCH] Use ar(1)'s s-flag instead of invoking ranlib(1)

2022-07-20 Thread Tom Schwindl
ranlib(1) is legacy and not even part of POSIX anymore, ar(1) can do the same job with the s-flag (which is an XSI-extension, but whatever). --- Makefile | 3 +-- config.mk | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index bd6e47237c5f..b8852583fb93 10

[hackers] [sbase] [PATCH] Use ar(1)'s s-flag instead of invoking ranlib(1)

2022-07-20 Thread Tom Schwindl
ranlib(1) is legacy and not even part of POSIX anymore, ar(1) can do the same job with the s-flag (which is an XSI-extension, but whatever). --- shamelessly stole Laslos commit message --- Makefile | 6 ++ config.mk | 1 - 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefi

[hackers] [libgrapheme] Use ar(1)'s s-flag instead of invoking ranlib(1) || Laslo Hunhold

2022-07-20 Thread git
commit 5fc87aedad86a8410a360ba718096e613ddf11f6 Author: Laslo Hunhold AuthorDate: Wed Jul 20 15:33:56 2022 +0200 Commit: Laslo Hunhold CommitDate: Wed Jul 20 15:33:56 2022 +0200 Use ar(1)'s s-flag instead of invoking ranlib(1) Tom Schwindl kindly pointed out that ranlib(1) i