We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6652a34 commit 63841baCopy full SHA for 63841ba
NEWS
@@ -5,6 +5,7 @@ PHP NEWS
5
- Core:
6
. Fixed bug GH-15408 (MSan false-positve on zend_max_execution_timer).
7
(zeriyoshi)
8
+ . Fixed bug GH-15515 (Configure error grep illegal option q). (Peter Kokot)
9
10
- MySQLnd:
11
. Fixed bug GH-15432 (Heap corruption when querying a vector). (cmb,
configure.ac
@@ -262,7 +262,7 @@ esac
262
263
dnl Detect musl libc
264
AC_MSG_CHECKING([whether we are using musl libc])
265
-if command -v ldd >/dev/null && ldd --version 2>&1 | grep -q ^musl
+if command -v ldd >/dev/null && ldd --version 2>&1 | grep ^musl >/dev/null 2>&1
266
then
267
AC_MSG_RESULT(yes)
268
AC_DEFINE([__MUSL__], [1], [Define when using musl libc])
0 commit comments