Linux binary: Use readlink -f rather than readlink -e in the launcher scripts so that they work with recent releases of busybox

This commit is contained in:
Kovid Goyal 2011-08-18 19:07:36 -06:00
parent a2c3b37da5
commit 72227947d3

View File

@ -290,7 +290,7 @@ class LinuxFreeze(Command):
launcher = textwrap.dedent('''\
#!/bin/sh
path=`readlink -e $0`
path=`readlink -f $0`
base=`dirname $path`
lib=$base/lib
export LD_LIBRARY_PATH=$lib:$LD_LIBRARY_PATH