New comment by tornaria on void-packages repository https://github.com/void-linux/void-packages/issues/33849#issuecomment-955803491 Comment: After a quick look, it seems to be an upstream bug. The file `bash.info` is an identical copy with the one shipped in distfiles (void doesn't even compile `bash.info`, rather it uses the shipped copy as-is). As for the bug: it turns out that `bashref.info` is compiled from the documentation, and this is later piped through `sed -e 's|bashref.info|bash.info|g'` to create `bash.info`. That obviously modifies byte addresses all over the place, rendering the tag table incorrect. I've reported this upstream at https://savannah.gnu.org/support/index.php?110557. My suggestion there is to recreate bash.info from bashref.info with ``` sed -e 's|bashref.info,|bash.info, |g' ``` @Gottox: I could: a. make a PR doing that for the void package as (I guess) a `pre_install()` step. b. include the suggested fix as a patch. c. do nothing and just wait for this to be fixed upstream. In fact (b) seems a simple solution, patch here: https://gist.github.com/tornaria/dcf5b0682be0cef99442adc8c8b23dba