Make sure ldd output isn't null (#92)
parent
1209fa98ac
commit
d44bdbada0
|
@ -415,12 +415,13 @@ class Exif
|
||||||
|
|
||||||
// Detect glibc or musl
|
// Detect glibc or musl
|
||||||
$libc = null;
|
$libc = null;
|
||||||
$ldd = shell_exec('ldd --version');
|
if ($ldd = shell_exec('ldd --version 2>&1')) {
|
||||||
if (false !== stripos($ldd, 'musl')) {
|
if (false !== stripos($ldd, 'musl')) {
|
||||||
$libc = 'musl';
|
$libc = 'musl';
|
||||||
} elseif (false !== stripos($ldd, 'glibc')) {
|
} elseif (false !== stripos($ldd, 'glibc')) {
|
||||||
$libc = 'glibc';
|
$libc = 'glibc';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Get static binary if available
|
// Get static binary if available
|
||||||
if ($arch && $libc && !$noLocal) {
|
if ($arch && $libc && !$noLocal) {
|
||||||
|
|
Loading…
Reference in New Issue