@geo_c :-
Looking into this further, you may find this worth a read:-
https://linux.die.net/man/7/symlink
.....or you can access it via
...in the terminal (opens with your default browser).
Other reading suggests that, although in theory Linux will traverse any number of sym-links till it finds a "real" file, in practice it seems the kernel may impose a limit as to how far a chain of sym-linked commands can actually travel before it 'fails'. Don't forget, every dependency 'soname' - the .so link - is always a link to the actual library itself (this allows for updating a library without upsetting the $PATH an application is trying to follow).
I've had trails of sym-links - one sym-link pointing to another, which then points to yet another, etc - go as far as four 'sequences' before failing to find the 'dereferenced' target. Apparently, in practice a 'hard' link will sometimes be more appropriate ( this uses 'ln' by itself without the '-s' option).
https://www.geeksforgeeks.org/soft-hard ... unixlinux/
The 'takeaway' here is that a sym-link is a string referencing a $PATH to the file(s) in question. You've probably noticed yourself that if the 'target' of a sym-link is moved, you end up with that 'dangling link' - the warning triangle icon. However, with a 'hard' link, the string references the inode of the target files/directory directly.....so will 'follow' it around the file-system even if it gets moved, as long as the target's name remains the same. This is because the 'inode table' is part of the file-system's overall 'metadata', cataloguing every single item's location within that file-system.
Just thought the above web-links might shed a bit of light on some of the 'peculiarities' inherent with using sym-links. It may help, it may not.
Mike. 