From 73933eb246f36bbdcd7c77da9f55d6dad9612775 Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Sun, 6 Jul 2025 22:06:06 +0200 Subject: [PATCH] Fix wine tools build --- build.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index cf404d2..b14a5fc 100755 --- a/build.sh +++ b/build.sh @@ -308,14 +308,16 @@ wine_build() mkdir -p ${WINEDIR}/{build-${GENERIC},build-tools} cd ${WINEDIR}/build-tools ../configure \ + --enable-win64 \ --without-freetype \ --without-x cd ${WINEDIR}/build-${GENERIC} ../configure \ + --enable-tools \ + --enable-win64 \ + --with-wine-tools=${WINEDIR}/build-tools \ --without-freetype \ --without-x \ - --with-wine-tools=${WINEDIR}/build-tools \ - --enable-tools \ ${CONFIGURE_PARAMETERS} for TOOL in widl wmc wrc; do make -j20 tools/${TOOL}/all