aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbootstrap-cpp.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap-cpp.sh b/bootstrap-cpp.sh
index 9edac9c5602..ade0c5a193b 100755
--- a/bootstrap-cpp.sh
+++ b/bootstrap-cpp.sh
@@ -6,8 +6,8 @@ usage() {
}
if [ $# -eq 2 ]; then
- SOURCE_DIR=$1
- BUILD_DIR=$2
+ SOURCE_DIR=$(realpath $1)
+ BUILD_DIR=$(realpath $2)
elif [[ $# -eq 1 && ( "$1" = "-h" || "$1" = "--help" )]]; then
usage
exit 0