diff --git a/pkgs/distro-build-pkgs/distro-build-client/doc.txt b/pkgs/distro-build-pkgs/distro-build-client/doc.txt index b969275..36fdcf1 100644 --- a/pkgs/distro-build-pkgs/distro-build-client/doc.txt +++ b/pkgs/distro-build-pkgs/distro-build-client/doc.txt @@ -216,8 +216,8 @@ Site-configuration keywords (where means no spaces, etc.): #:bits --- 32 or 64, affects Visual Studio mode #:vc --- provided to "vcvarsall/bat" to select the Visual - Studio build mode; the default is "x86" or "x64", depending on - `#:bits' + Studio build mode; the default is "x86" or "x86_amd64", depending + on `#:bits' #:sign-identity --- provides an identity to be passed to `codesign` for code signing on Mac OS X (for all executables in a diff --git a/pkgs/distro-build-pkgs/distro-build-server/drive-clients.rkt b/pkgs/distro-build-pkgs/distro-build-server/drive-clients.rkt index 8895a91..5a99b52 100644 --- a/pkgs/distro-build-pkgs/distro-build-server/drive-clients.rkt +++ b/pkgs/distro-build-pkgs/distro-build-server/drive-clients.rkt @@ -299,7 +299,7 @@ (define vc (or (get-opt c '#:vc) (if (= bits 32) "x86" - "x64"))) + "x86_amd64"))) (define j (or (get-opt c '#:j) 1)) (define (cmd . args) (list "cmd" "/c" (shell-protect (apply ~a args) platform)))