mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-05-30 18:45:20 -04: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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user