On 2018-01-11 07:28, Corbin Bird wrote:

> > export LD_LIBRARY_PATH=$VULKAN_SDK/lib:$LD_LIBRARY_PATH

This is wrong, because it will put the current directory (as represented
by the empty string) into the list even if it wasn't there originally.

Try something like this (untested):

export LD_LIBRARY_PATH=$VULKAN_SDK/lib${LD_LIBRARY_PATH:+":$LD_LIBRARY_PATH"}

see man bash, "Parameter expansion".

-- 
Please don't Cc: me privately on mailing lists and Usenet,
if you also post the followup to the list or newsgroup.
To reply privately _only_ on Usenet, fetch the TXT record for the domain.

Reply via email to