kill bogus code

SVN revision: 22272
This commit is contained in:
Mike Frysinger 2006-04-21 00:32:04 +00:00
parent aa5cf3a34d
commit 922a6ccbb6
1 changed files with 2 additions and 2 deletions

View File

@ -6,13 +6,13 @@ dnl AM_GST_ELEMENT_CHECK(ELEMENT-NAME, ACTION-IF-FOUND, ACTION-IF-NOT-FOUND)
AC_DEFUN([AM_GST_ELEMENT_CHECK],
[
if test "x$GST_INSPECT" == "x"; then
if test "x$GST_INSPECT" = "x"; then
AC_CHECK_PROGS(GST_INSPECT, gst-inspect gst-inspect-0.10, [])
fi
if test "x$GST_INSPECT" != "x"; then
AC_MSG_CHECKING(GStreamer element $1)
if [ $GST_INSPECT $1 > /dev/null 2> /dev/null ]; then
if $GST_INSPECT $1 > /dev/null 2> /dev/null ; then
AC_MSG_RESULT(found.)
$2
else