From aafa7e112a9c3b7249b0bfcd6cfb651682d7c59f Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Tue, 12 Dec 2023 13:14:59 -0600 Subject: [PATCH] fix --- scripts/make_common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/make_common.sh b/scripts/make_common.sh index 9e8c86f1..f5936092 100644 --- a/scripts/make_common.sh +++ b/scripts/make_common.sh @@ -5,8 +5,8 @@ BUILD_CLEAN=$2 IS_MINGW=$3 IS_WIN32=$4 -if [ "${IS_MINGW}" == "1" ]; then - BUILD_ROOT=build3 +if [ "${IS_MINGW}" == "1" ] || [ "${IS_WIN32}" == "1" ]; then + BUILD_ROOT=build2 else BUILD_ROOT=build fi