mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
configure: Use = instead of == in shell scripts for equality checks
This commit is contained in:
parent
b46d04627f
commit
956c1d83f1
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ fi
|
|||
|
||||
dnl Check for mmap (needed by electricfence plugin)
|
||||
AC_FUNC_MMAP
|
||||
AM_CONDITIONAL(GST_HAVE_MMAP, test "x$ac_cv_func_mmap_fixed_mapped" == "xyes")
|
||||
AM_CONDITIONAL(GST_HAVE_MMAP, test "x$ac_cv_func_mmap_fixed_mapped" = "xyes")
|
||||
|
||||
dnl Check for mmap (needed by electricfence plugin)
|
||||
|
||||
|
|
Loading…
Reference in a new issue