From 72227947d32e3cd560d5bb2e76093df3ed339da0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 18 Aug 2011 19:07:36 -0600 Subject: [PATCH] Linux binary: Use readlink -f rather than readlink -e in the launcher scripts so that they work with recent releases of busybox --- setup/installer/linux/freeze2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/installer/linux/freeze2.py b/setup/installer/linux/freeze2.py index 9dd7df04f8..c4ebed9e61 100644 --- a/setup/installer/linux/freeze2.py +++ b/setup/installer/linux/freeze2.py @@ -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