From d3de524b320dccb7d1e6d3dbd65dc5da1067564a Mon Sep 17 00:00:00 2001 From: dancer Date: Mon, 5 Dec 2005 14:24:54 +0000 Subject: Use readlink -e instead of readlink -f : * pdebuild-user-mode-linux: * pdebuild-uml-checkparams: * pdebuild-checkparams: * pdebuild: readlink -e instead of readlink -f * pbuilder-uml-checkparams: readlink -e instead of readlink -f * pbuilder-modules: readlink -e instead of readlink -f * pbuilder-createbuildenv: quote HOOKDIR and readlink -e instead of readlink -f. * pbuilder-checkparams: * pbuilder-buildpackage: use readlink -e here. * pbuilder-buildpackage-funcs: use readlink -e instead of readlink -f. 342117 thanks to Markus Kolb --- pbuilder-uml-checkparams | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pbuilder-uml-checkparams') diff --git a/pbuilder-uml-checkparams b/pbuilder-uml-checkparams index c361247..fddd611 100644 --- a/pbuilder-uml-checkparams +++ b/pbuilder-uml-checkparams @@ -102,7 +102,7 @@ while [ -n "$1" ] ; do --buildresult) # ignore buildresult if [ -d "$2" ]; then - UML_BUILDRESULT=$(readlink -f "$2") + UML_BUILDRESULT=$(readlink -e "$2") else echo "E: Directory $2 does not exist" >&2 exit 1 @@ -110,7 +110,7 @@ while [ -n "$1" ] ; do shift; shift;; --buildplace) if [ -d "$2" ]; then - BUILDPLACE=$(readlink -f "$2") + BUILDPLACE=$(readlink -e "$2") else echo "E: Directory $2 does not exist" >&2 exit 1 @@ -119,7 +119,7 @@ while [ -n "$1" ] ; do --logfile) exec > "$2"; exec 2>&1 - PBUILDER_BUILD_LOGFILE=$(readlink -f "$2") + PBUILDER_BUILD_LOGFILE=$(readlink -e "$2") shift;shift;; --) shift; -- cgit v1.2.3