From 9461e3c2ae537fa3cf443033085a538776f3efc6 Mon Sep 17 00:00:00 2001 From: levlam Date: Wed, 15 Sep 2021 10:16:53 +0300 Subject: [PATCH] Fix gperf install instructions through vcpkg. --- build.html | 4 ++-- 1 file 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 ..'); }