From 922a6ccbb6f3f83a330b39faac9477676ecb0ff8 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 21 Apr 2006 00:32:04 +0000 Subject: [PATCH] kill bogus code SVN revision: 22272 --- legacy/emotion/m4/gst-element-check.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/emotion/m4/gst-element-check.m4 b/legacy/emotion/m4/gst-element-check.m4 index 82e9be9986..4f4b3064a5 100644 --- a/legacy/emotion/m4/gst-element-check.m4 +++ b/legacy/emotion/m4/gst-element-check.m4 @@ -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