Do not export FS_CEF_PRELOAD with full path. LD_PRELOAD cannot handle path with spaces in them (http://stackoverflow.com/questions/10072609/how-to-escape-spaces-in-library-path-appended-to-ld-preload). as we also set LD_LIBRARY_PATH, this is no problem.
parent
32412118f8
commit
ea1c57ca32
|
|
@ -162,7 +162,7 @@ fi
|
|||
|
||||
fi
|
||||
|
||||
export FS_CEF_PRELOAD="`pwd`/lib/libcef.so"
|
||||
export FS_CEF_PRELOAD="libcef.so"
|
||||
|
||||
# Copy "$@" to ARGS array specifically to delete the --skip-gridargs switch.
|
||||
# The gridargs.dat file is no more, but we still want to avoid breaking
|
||||
|
|
|
|||
Loading…
Reference in New Issue