mirror of
https://github.com/clearlinux/bsdiff.git
synced 2026-06-16 02:35:51 +00:00
Use 'readlink -f' instead of 'realpath'
Some distros do not ship the coreutils 'realpath', so use 'readlink -f' instead, which is equivalent for the usage here. Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
This commit is contained in:
+1
-1
@@ -8,7 +8,7 @@ testnum=0
|
||||
|
||||
sudo rm -f *.diff *.out
|
||||
|
||||
libdir="$(realpath "../.libs")"
|
||||
libdir="$(readlink -f "../.libs")"
|
||||
ldpath="LD_LIBRARY_PATH=$libdir"
|
||||
BSDIFF="sudo $ldpath valgrind -q $libdir/bsdiff"
|
||||
BSPATCH="sudo $ldpath valgrind -q $libdir/bspatch"
|
||||
|
||||
Reference in New Issue
Block a user