From 686c6abd2b5c9bbdcc932cdb5b358b9d5a351917 Mon Sep 17 00:00:00 2001 From: "Wilson J. Holmes" Date: Fri, 4 Oct 2024 22:43:57 -0400 Subject: [PATCH] Update comment to match implementation in build.sh: `realpath --canonicalize-existing` --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 117b702a8..6622d5f92 100755 --- a/build.sh +++ b/build.sh @@ -595,7 +595,7 @@ mkdir -p $BUILD . $(dirname $(which $0))/version.sh # qmake needs absolute paths, so we get them now: -# OSX does not have `readlink -f` command. Use equivalent Perl script. +# OSX does not have `realpath --canonicalize-existing` command. Use equivalent Perl script. if [ "$IS_MAC" = "no" ]; then BUILD=`realpath --canonicalize-existing $BUILD` BIN=`realpath --canonicalize-existing $BIN`