From b4c0dd8ab50938bc242cd44ea7737a2c84c575f8 Mon Sep 17 00:00:00 2001 From: David Minton Date: Thu, 17 Aug 2023 11:46:30 -0400 Subject: [PATCH] Made the PREFIX a realpath --- buildscripts/_build_getopts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildscripts/_build_getopts.sh b/buildscripts/_build_getopts.sh index acd3863e8..60c364223 100755 --- a/buildscripts/_build_getopts.sh +++ b/buildscripts/_build_getopts.sh @@ -24,7 +24,7 @@ while getopts ":d:p:m:h" ARG; do DEPENDENCY_DIR=$(realpath ${OPTARG}) ;; p) - PREFIX="${OPTARG}" + PREFIX=$(realpath ${OPTARG}) ;; m) MACOSX_DEPLOYMENT_TARGET="${OPTARG}"