From 2eea77981d656c49416cb46074e435daf8d643b3 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 19 Aug 2020 14:51:43 -0700 Subject: [PATCH] Fix bootstrap.pl. --- support/buildbot/bootstrap.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/buildbot/bootstrap.pl b/support/buildbot/bootstrap.pl index 3b9cbbd..3092b64 100755 --- a/support/buildbot/bootstrap.pl +++ b/support/buildbot/bootstrap.pl @@ -56,9 +56,9 @@ if ($^O =~ /darwin/) { } if ($^O !~ /MSWin/) { - push(@conf_argv, '--target-arch=x86,x64'); + push(@conf_argv, '--targets=x86,x86_64'); } else { - push(@conf_argv, '--target-arch=x86'); + push(@conf_argv, '--targets=x86'); } push(@conf_argv, '--sdks=all');