From 4b25bb1f34140ac9953a78c041ca3de7f99081c2 Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Sun, 16 Feb 2025 15:50:35 +0900 Subject: [PATCH] Fixed clean up error message on Windows --- Dockerfiles/build-mysql/windows/Dockerfile.agent | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfiles/build-mysql/windows/Dockerfile.agent b/Dockerfiles/build-mysql/windows/Dockerfile.agent index 62c36e710..fe02b31c1 100644 --- a/Dockerfiles/build-mysql/windows/Dockerfile.agent +++ b/Dockerfiles/build-mysql/windows/Dockerfile.agent @@ -68,5 +68,8 @@ RUN Set-Location -Path $env:SystemDrive\.; ` Copy-Item -Path $env:ZBX_SOURCES_DIR\bin\win64\zabbix_get.exe $env:ZBX_OUTPUT_DIR\bin; ` Copy-Item -Path $env:ZBX_SOURCES_DIR\bin\win64\zabbix_sender.exe $env:ZBX_OUTPUT_DIR\bin; ` Copy-Item -Path $env:ZBX_SOURCES_DIR\conf\zabbix_agentd.win.conf $env:ZBX_OUTPUT_DIR\conf\zabbix_agentd.conf; ` - nmake /S -f Makefile clean; ` + nmake /S -f Makefile ` + PCREINCDIR=$env:SystemDrive\build_output\pcre\include ` + PCRELIBDIR=$env:SystemDrive\build_output\pcre\lib ` + clean; ` Write-Host 'Zabbix binaries are compiled...';