diff options
author | Werner Koch <wk@gnupg.org> | 2024-12-06 12:21:37 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2024-12-06 12:21:37 +0100 |
commit | 4c830b240c5f4ac9cdd7ba0eb72b96a79acde96f (patch) | |
tree | 5c1040c6657e399723f6d4e4b4b2816dcf39ef4a /build-aux/speedo.mk | |
parent | gpg: Silence expired trusted-key diagnostics in quiet mode. (diff) | |
download | gnupg2-4c830b240c5f4ac9cdd7ba0eb72b96a79acde96f.tar.xz gnupg2-4c830b240c5f4ac9cdd7ba0eb72b96a79acde96f.zip |
speedo: Change the default to build a 64 bit version
* build-aux/speedo.mk (W32VERSION): Default to 64 bit.
* build-aux/speedo/w32/inst.nsi: Remove the doc dir.
Diffstat (limited to 'build-aux/speedo.mk')
-rw-r--r-- | build-aux/speedo.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build-aux/speedo.mk b/build-aux/speedo.mk index 545a28f22..be5971a3c 100644 --- a/build-aux/speedo.mk +++ b/build-aux/speedo.mk @@ -73,7 +73,7 @@ help: @echo 'Use WIXPREFIX to provide the WIX binaries for the MSI package.' @echo ' Using WIX also requires wine with installed wine mono.' @echo ' See help-wixlib for more information' - @echo 'Set W32VERSION=w64 to build a 64 bit Windows version.' + @echo 'Set W32VERSION=w32 to build a 32 bit Windows version.' help-wixlib: @echo 'The buildsystem can create a wixlib to build MSI packages.' @@ -161,8 +161,8 @@ WHAT=git # Set target to "native" or "w32". TARGETOS= -# To build a 64 bit Windows version also change this to "w64" -W32VERSION=w32 +# To build a 32 bit Windows version also change this to "w32" +W32VERSION=w64 # Set to 1 to use a pre-installed swdb.lst instead of the online version. CUSTOM_SWDB=0 |