[Bug 1056863] Re: : in path makes troubles with LD_LIBRARY_PATH

2013-04-11 Thread Stephen M. Webb
The ELF loader simply does not handle embedded colons or semicolons in the LD_LIBRARY_PATH string. It is not possible to escape them using a backslash. ** Also affects: eglibc Importance: Undecided Status: New ** Changed in: ubuntu Status: New = Confirmed -- You received this

[Bug 1056863] Re: : in path makes troubles with LD_LIBRARY_PATH

2012-10-07 Thread Book 'em Dano
Perhaps you could create a symbolic link whose file name contains no non-alphanumeric characters and points to the lib folder, then add the symbolic link to the library path variable. --- Ubuntu Bug Squad volunteer triager http://wiki.ubuntu.com/BugSquad -- You received this bug notification

[Bug 1056863] Re: : in path makes troubles with LD_LIBRARY_PATH

2012-10-07 Thread Sworddragon
I have created a symlink to the directory (ln -s '/usr/local/games/Superbrothers: Sword Sworcery EP/lib' /test) and added it to LD_LIBRARY_PATH (export LD_LIBRARY_PATH=/test). The game works with it but this is more like a workaround. -- You received this bug notification because you are a

[Bug 1056863] Re: : in path makes troubles with LD_LIBRARY_PATH

2012-10-04 Thread Sworddragon
/usr/local/games/Superbrothers\:\ Sword\ \\ Sworcery\ EP/lib Even this way LD_LIBRARY_PATH is interpreted with 2 paths. To test this I have copied a needed library to /usr/local/games/Superbrothers and it was really loaded at this place. -- You received this bug notification because you are a

[Bug 1056863] Re: : in path makes troubles with LD_LIBRARY_PATH

2012-10-03 Thread Book 'em Dano
Whatever is enclosed in the single quotes wil be interpretted literally, so you either use the quotes or the escape character. I think you should use only one set of quotes or if you are going to use the escape character, you have to use it throughout the whole path wherever needed, i.e.