From fe3efe2b7563884413754307d12410e3a54bca1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 5 Sep 2012 19:55:10 +0100 Subject: [PATCH] gst-element-check.m4: fix action-if-found and not-found invocation Arguments got shifted back by one. --- gst-element-check.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-element-check.m4 b/gst-element-check.m4 index 49ddc61ce4..9ad421f57d 100644 --- a/gst-element-check.m4 +++ b/gst-element-check.m4 @@ -20,14 +20,14 @@ AC_DEFUN([GST_ELEMENT_CHECK], AC_MSG_CHECKING(GStreamer $gstapiversion element $1 >= $2) if [ $gstinspect --exists --atleast-version=$2 $1 ]; then AC_MSG_RESULT([found]) - $2 + $3 else if [ $gstinspect --exists $1 ]; then AC_MSG_RESULT([found, but too old]) else AC_MSG_RESULT([not found]) fi - $3 + $4 fi fi ])