# The Problem
***Last Updated: May 2024***
If while updating [[Homebrew]] you get an error like this:
```sh
Error: No such file or directory @ rb_check_realpath_internal - /etc/ld.so.conf
```
# Why This Happens
It is because [[Solus]] has set[^1] a custom path for `ld.so.conf` for some reason.
# Resolution
You can work around this by linking the missing file to its correct location.[^2]
```sh
cd /etc
sudo ln -s -v /usr/share/defaults/etc/ld.so.conf ld.so.conf
```
# References
[^1]: https://github.com/getsolus/packages/blob/main/packages/g/glibc/files/stateless/0003-elf-ldconfig-Use-a-stateless-ld.so.conf.patch
[^2]: https://github.com/ValveSoftware/steam-runtime/issues/510