mirror of
https://github.com/albfan/miraclecast.git
synced 2025-02-12 13:31:54 +00:00
Fix dependency check to be posix-compliant
test with "==" operator works in bash but fails in other shells such as `sh`
This commit is contained in:
parent
f3debd5678
commit
850a1c6f7c
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ AC_DEFINE_UNQUOTED([IP_BINARY], [$IP_BINARY], [Path for ip binary])
|
|||
# Mandatory dependencies
|
||||
#
|
||||
|
||||
AS_IF([test "$use_libsystemd" == "yes"],
|
||||
AS_IF([test "$use_libsystemd" = "yes"],
|
||||
[
|
||||
AC_DEFINE([ENABLE_SYSTEMD], [], [Use systemd])
|
||||
m4_ifdef([PKG_CHECK_MODULES], [
|
||||
|
|
Loading…
Reference in a new issue