New comment by n-ivkovic on void-packages repository https://github.com/void-linux/void-packages/pull/27113#issuecomment-748313059 Comment: Hi @kawaiiamber, please note that default.rc will need to be installed as **/etc/tspreed/tspreed.rc**. The current use of `vconf` will not install default.rc to that destination. According to the [docos](https://github.com/void-linux/void-packages/blob/master/Manual.md#global-functions), `vconf` will always copy the 1st argument into /etc/ (like how `vbin` copies the 1st argument into /usr/bin/), thus it appears currently default.rc will be installed as /etc/etc/tspreed.rc. I believe changing the use of `vconf` to the following will install default.rc in the correct destination: ``` vconf ${wrksrc}/default.rc tspreed/tspreed.rc ``` Please note that I am not a Void Linux user and do not have any xbps-based machine to test, so take my code changes with a grain of salt!