From db3ec2291be05c2e77b4513337639d0175f4985c Mon Sep 17 00:00:00 2001 From: Vladimir Kozhukalov Date: Thu, 2 Aug 2012 19:03:58 +0400 Subject: [PATCH] [bootstrap] Fixed relative paths in buildbootstrap.sh --- bootstrap/bootstrapbuild.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootstrap/bootstrapbuild.sh b/bootstrap/bootstrapbuild.sh index b32f61e434..2df6f8cced 100755 --- a/bootstrap/bootstrapbuild.sh +++ b/bootstrap/bootstrapbuild.sh @@ -7,6 +7,8 @@ set -e [ -n "$BINARIES_DIR" ] || { echo "BINARIES_DIR variable should be defined."; exit 1; } [ -n "$BASEDIR" ] || { echo "BASEDIR variable should be defined."; exit 1; } +BASEDIR=`readlink -f $BASEDIR` +BINARIES_DIR=`readlink -f $BINARIES_DIR` ########################### # VARIABLES