From 5451945972cb731faad88f6d0cecf0a62b4213a4 Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Wed, 8 Jul 2026 13:21:52 +0800 Subject: [PATCH] Use escapeshellarg instead --- src/Package/Library/openssl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Package/Library/openssl.php b/src/Package/Library/openssl.php index d40271a5..be32a9da 100644 --- a/src/Package/Library/openssl.php +++ b/src/Package/Library/openssl.php @@ -42,7 +42,7 @@ class openssl $perl = ApplicationContext::get('perl'); $cmd = cmd()->cd($lib->getSourceDir()) ->exec( - quote($perl) . ' Configure zlib VC-WIN64A ' . + escapeshellarg($perl) . ' Configure zlib VC-WIN64A ' . 'no-shared ' . '--prefix=' . quote($lib->getBuildRootPath()) . ' ' . '--with-zlib-lib=' . quote($lib->getLibDir()) . ' ' .