raboof / notion

Tiling tabbed window manager
https://notionwm.net/
GNU Lesser General Public License v2.1
268 stars 63 forks source link

Invoke `ar -s` for non-GNU/SysV toolchains #343

Closed SoapGentoo closed 2 years ago

SoapGentoo commented 2 years ago

@raboof some older BSD toolchains require -s, so this should fix it on those OSes too.

SoapGentoo commented 2 years ago

POSIX specifies that ar cr should be enough to generate the correct index, but I read that old BSD toolchains would require ar -s without which BSD ar wouldn't generate the index. On modern POSIX OSes, -s can be omitted, I just want this to work fine on older BSDs too.

raboof commented 2 years ago

Ah, gotcha, great!