Update comment to match implementation in build.sh: `realpath --canonicalize-existing`

This commit is contained in:
Wilson J. Holmes 2024-10-04 22:43:57 -04:00
parent a89a9b610a
commit 686c6abd2b
No known key found for this signature in database
GPG Key ID: EC07FA96BDAF8C4A
1 changed files with 1 additions and 1 deletions

View File

@ -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`