mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
configure: fix test so it works with FreeBSD's /bin/sh
Use '=' instead of '=='. Fixes: configure: working c++ compiler found: yes test: xyes: unexpected operator http://bugzilla-attachments.gnome.org/attachment.cgi?id=175692
This commit is contained in:
parent
66d2781877
commit
d569bf420d
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ AC_LANG_PUSH([C++])
|
|||
AC_TRY_COMPILE([ class Foo { int bar; };], , working_cxx=yes, working_cxx=no)
|
||||
AC_LANG_POP([C++])
|
||||
AC_MSG_NOTICE([working c++ compiler found: $working_cxx])
|
||||
AM_CONDITIONAL(HAVE_CXX, test "x$working_cxx" == "xyes")
|
||||
AM_CONDITIONAL(HAVE_CXX, test "x$working_cxx" = "xyes")
|
||||
|
||||
dnl Perl is used in building documentation and in the version checks
|
||||
AC_PATH_PROG(PERL_PATH, perl, no)
|
||||
|
|
Loading…
Reference in a new issue