Skip to content

Commit 2d293dd

Browse files
committed
Fix for PCRE2
Signed-off-by: Scott R. Shinn <scott@atomicorp.com>
1 parent f61f6a1 commit 2d293dd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/make-multi-platform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ jobs:
6363
- name: Build Windows agent
6464
run: |
6565
cd src
66-
make TARGET=winagent -j$(nproc)
66+
make TARGET=winagent PCRE2_SYSTEM=yes ZLIB_SYSTEM=yes -j$(nproc)

src/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,8 @@ ifneq (${ZLIB_SYSTEM},no)
173173
endif
174174

175175
ifeq (${TARGET}, winagent)
176-
PCRE2_SYSTEM=no
176+
ZLIB_SYSTEM?=no
177+
PCRE2_SYSTEM?=no
177178
endif
178179

179180
ifeq (${PCRE2_SYSTEM},no)

0 commit comments

Comments
 (0)