From ef4ab004b126ef6abdd5d6329b755c27c7cd50e0 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Mon, 4 Dec 2023 18:45:51 -0600 Subject: [PATCH] build-from-source.windows: fix libressl output file names --- extra/build-from-source/windows/windows.factor | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/extra/build-from-source/windows/windows.factor b/extra/build-from-source/windows/windows.factor index f5259327dd..bc8983ef73 100644 --- a/extra/build-from-source/windows/windows.factor +++ b/extra/build-from-source/windows/windows.factor @@ -153,11 +153,9 @@ IN: build-from-source.windows qw{ cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON .. } try-process qw{ msbuild LibreSSL.sln /m /property:Configuration=Release } try-process ] if - { - "crypto/Release/crypto-51.dll" - "ssl/Release/ssl-54.dll" - "tls/Release/tls-27.dll" - } copy-output-files + "crypto/Release/crypto.dll" "libressl-crypto.dll" copy-output-file-as + "ssl/Release/ssl.dll" "libressl-ssl.dll" copy-output-file-as + "tls/Release/tls.dll" "libressl-tls.dll" copy-output-file-as ] with-build-directory ] with-tar-gz ; -- 2.34.1