From 5f4f271115e0a89283c74b484cbf13987c085148 Mon Sep 17 00:00:00 2001 From: Jorgen Lundman Date: Mon, 21 Oct 2024 17:45:21 +0900 Subject: [PATCH] Fix prebuild and prelink scripts Make sure they work on empty git clone directories --- contrib/windows/OpenZFS/OpenZFS/OpenZFS.vcxproj | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/contrib/windows/OpenZFS/OpenZFS/OpenZFS.vcxproj b/contrib/windows/OpenZFS/OpenZFS/OpenZFS.vcxproj index b1f865421dde..2490cf0924c8 100644 --- a/contrib/windows/OpenZFS/OpenZFS/OpenZFS.vcxproj +++ b/contrib/windows/OpenZFS/OpenZFS/OpenZFS.vcxproj @@ -132,6 +132,7 @@ false http://timestamp.digicert.com $(IncludePath);$(KMDF_INC_PATH)$(KMDF_VER_PATH);../../../../include + true DbgengKernelDebugger @@ -203,9 +204,15 @@ - copy /Y "$(SolutionDir)..\..\..\out\build\x64-Debug\module\os\windows\driver\OpenZFS.man" "$(TargetDir)\OpenZFS" + copy /Y "$(SolutionDir)..\..\..\out\build\x64-Debug\module\os\windows\driver\OpenZFS.man" "$(TargetDir)\OpenZFS\OpenZFS.man" Copy OpenZFS.man to deploy dir - no better way? + + IF NOT EXIST "$(TargetDir)OpenZFS" MKDIR "$(TargetDir)OpenZFS" + + + Make sure output exists +