From bd846c79c7bfc601dbb16008db8170f3512f330e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Thu, 7 Sep 2023 18:10:46 +0200 Subject: [PATCH] [WINESYNC] Use --no-autoconf otherwise running time is too long. --- sdk/tools/winesync/winesync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/tools/winesync/winesync.py b/sdk/tools/winesync/winesync.py index 652e4233e2321..7c33ebc573e4b 100644 --- a/sdk/tools/winesync/winesync.py +++ b/sdk/tools/winesync/winesync.py @@ -84,7 +84,7 @@ def create_or_checkout_wine_branch(self, wine_tag, wine_staging_tag): self.wine_staging_repo.reset(wine_staging_target_commit, pygit2.GIT_RESET_HARD) # run the wine-staging script - subprocess.call(['bash', '-c', self.wine_staging_src + '/patches/patchinstall.sh DESTDIR=' + self.wine_src + ' --all --backend=git-am']) + subprocess.call(['bash', '-c', self.wine_staging_src + '/patches/patchinstall.sh DESTDIR=' + self.wine_src + ' --all --backend=git-am --no-autoconf']) # delete the branch we created self.wine_staging_repo.checkout(self.wine_staging_repo.lookup_branch('master'))