aboutsummaryrefslogtreecommitdiffhomepage
path: root/build.html
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2021-09-15 10:16:53 +0300
committerlevlam <levlam@telegram.org>2021-09-15 10:16:53 +0300
commit9461e3c2ae537fa3cf443033085a538776f3efc6 (patch)
tree61a4dfebd04ad18867cbb91d42affa481eb2664c /build.html
parenta1e41a1dc13c8f5d1fe70e116db287426e0967bc (diff)
Fix gperf install instructions through vcpkg.
Diffstat (limited to 'build.html')
-rw-r--r--build.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.html b/build.html
index 7e845f0..9eebdff 100644
--- a/build.html
+++ b/build.html
@@ -407,9 +407,9 @@ function onOptionsChanged() {
commands.push('cd vcpkg');
commands.push(local + 'bootstrap-vcpkg.bat');
if (build_64bit) {
- commands.push(local + 'vcpkg.exe install gperf openssl:x64-windows zlib:x64-windows');
+ commands.push(local + 'vcpkg.exe install gperf:x64-windows openssl:x64-windows zlib:x64-windows');
} else {
- commands.push(local + 'vcpkg.exe install gperf openssl:x86-windows zlib:x86-windows');
+ commands.push(local + 'vcpkg.exe install gperf:x86-windows openssl:x86-windows zlib:x86-windows');
}
commands.push('cd ..');
}