From: Dongli Zhang Date: Sat, 28 May 2016 01:16:58 +0000 (+0800) Subject: xsplice-build-tools: replace realpath with readlink in xsplice-build X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2f1de3379cb0b3afe53b031f81e0c0200a95f87a;p=livepatch-build-tools.git xsplice-build-tools: replace realpath with readlink in xsplice-build Replace realpath with readlink since '-m' option is not supported by realpath. Signed-off-by: Dongli Zhang Signed-off-by: Konrad Rzeszutek Wilk --- diff --git a/xsplice-build b/xsplice-build index 2eb7993..5852186 100755 --- a/xsplice-build +++ b/xsplice-build @@ -213,7 +213,7 @@ while [[ $# -gt 0 ]]; do ;; --xen-syms) shift - XENSYMS="$(realpath -m -- "$1")" + XENSYMS="$(readlink -m -- "$1")" [ -f "$XENSYMS" ] || die "xen-syms file does not exist" shift ;; @@ -238,9 +238,9 @@ done [ -z "$outputarg" ] && die "Output directory not given" [ -z "$DEPENDS" ] && die "Build-id dependency not given" -SRCDIR="$(realpath -m -- "$srcarg")" -PATCHFILE="$(realpath -m -- "$patcharg")" -OUTPUT="$(realpath -m -- "$outputarg")" +SRCDIR="$(readlink -m -- "$srcarg")" +PATCHFILE="$(readlink -m -- "$patcharg")" +OUTPUT="$(readlink -m -- "$outputarg")" [ -d "${SRCDIR}" ] || die "Xen directory does not exist" [ -f "${PATCHFILE}" ] || die "Patchfile does not exist"