From 50cfc5899b668bd05143900e503ef1cae59f8e92 Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Sun, 30 Mar 2025 20:54:32 +0800 Subject: [PATCH] Re-enable musl version detect --- src/SPC/builder/linux/SystemUtil.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/SPC/builder/linux/SystemUtil.php b/src/SPC/builder/linux/SystemUtil.php index 1e56fc68..08867db2 100644 --- a/src/SPC/builder/linux/SystemUtil.php +++ b/src/SPC/builder/linux/SystemUtil.php @@ -202,7 +202,6 @@ class SystemUtil } return null; } - /* // for musl, disabled temporarily as musl has better compatibility between different patch version? if (PHP_OS_FAMILY === 'Linux' && getenv('SPC_LIBC') === 'musl') { if (self::isMuslDist()) { @@ -217,7 +216,6 @@ class SystemUtil return $matches[1]; } } - */ return null; } }