Those experimenting with NDI on OBS Linux may have noticed this pop up whenever ldconfig is called:
libndi.so.4 is not a symbolic link
The reason? Lazy development.
libndi.so
, libndi.so.4
and libndi.so.4.0.0
are all 3 copies of the same file…
How do we suppress the error?
cd /usr/lib
sudo rm libndi.so
sudo ln -r -s libndi.so.4.0.0 libndi.so
sudo rm libndi.so.4
sudo ln -r -s libndi.so.4.0.0 libndi.so.4
This will get ldconfig to stop complaining. Honestly this is super lazy development on their part.