mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-01 16:13:21 +02:00
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:
parent
a2c3b37da5
commit
72227947d3
1 changed files with 1 additions and 1 deletions
|
|
@ -290,7 +290,7 @@ def build_launchers(self):
|
|||
|
||||
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue