From ffc6fd7e03e145deec9300a9bff0ac7d8620ac7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 31 Aug 2021 14:22:56 +0200 Subject: [PATCH] meson-pgo: realpath() on build dir too --- meson-pgo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson-pgo.sh b/meson-pgo.sh index 8aa0e97e..ba3ea954 100755 --- a/meson-pgo.sh +++ b/meson-pgo.sh @@ -4,7 +4,7 @@ set -e mode=${1}; shift source_dir=$(realpath "${1}"); shift -build_dir=${1}; shift +build_dir=$(realpath ${1}); shift if [ -d ${build_dir} ]; then echo "${build_dir}: build directory already exists"