aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Schwarz <zeranoe@gmail.com>2023-01-29 21:09:31 -0500
committerToni Uhlig <matzeton@googlemail.com>2023-04-20 15:43:51 +0200
commit1fa60ea3602efd1fe115de02b586b47a007d307d (patch)
tree93c6505a9280e99949c392e241552e5e658220f0
parentecc9ee75457ad903d98f263443d68a94ed660e41 (diff)
Avoid realpath for macOS
Closes #27
-rwxr-xr-xmingw-w64-build8
1 files changed, 6 insertions, 2 deletions
diff --git a/mingw-w64-build b/mingw-w64-build
index 02c11b7..189e90a 100755
--- a/mingw-w64-build
+++ b/mingw-w64-build
@@ -322,14 +322,14 @@ while :; do
;;
-r|--root)
if [ "$2" ]; then
- ROOT_PATH=$(realpath "$2")
+ ROOT_PATH_ARG="$2"
shift
else
arg_error "'--root' requires a non-empty option argument"
fi
;;
--root=?*)
- ROOT_PATH=$(realpath "${1#*=}")
+ ROOT_PATH_ARG="${1#*=}"
;;
--root=)
arg_error "'--root' requires a non-empty option argument"
@@ -486,6 +486,10 @@ fi
TOTAL_STEPS=$((TOTAL_STEPS + THREADS_STEPS + BUILD_STEPS))
+if [ "$ROOT_PATH_ARG" ]; then
+ ROOT_PATH=$(mkdir -p "$ROOT_PATH_ARG" && cd "$ROOT_PATH_ARG" && pwd)
+fi
+
SRC_PATH="$ROOT_PATH/src"
BLD_PATH="$ROOT_PATH/bld"
LOG_FILE="$ROOT_PATH/build.log"