There is a new pull request by sgn against master on the void-packages repository https://github.com/sgn/void-packages build-style-cmake-pass-libs https://github.com/void-linux/void-packages/pull/29028 build-style/cmake: pass LIBS as CMAKE_*_STANDARD_LIBRARIES Normally, we can add them into configure_args directly. However, if we need to link with 2 or more libaries (e.g. -latomic and -lexecinfo on armv6-musl), we have noway to do it properly: - configure_args will be splited on whitespace - cmake denies to recognise CMAKE_*_STANDARD_LIBRARIES as a list, hence denies to split on semicolon (";") Let's pass LIBS as CMAKE_*_STANDARD_LIBRARIES instead. #### General - [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements) #### Have the results of the proposed changes been tested? - [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me - [ ] I generally don't use the affected packages but briefly tested this PR A patch file from https://github.com/void-linux/void-packages/pull/29028.patch is attached