From 53a2485bb2a648f38767a310caebe1b2679f0cea Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 19 Nov 2009 10:24:26 +0000 Subject: [PATCH] gst-args: fix version checking Without the 'test' configure will look for a binary call x and fail to find it.. --- m4/gst-args.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/m4/gst-args.m4 b/m4/gst-args.m4 index 8c58667..ccdd4da 100644 --- a/m4/gst-args.m4 +++ b/m4/gst-args.m4 @@ -176,11 +176,11 @@ AC_DEFUN([AG_GST_ARG_WITH_PACKAGE_NAME], P=$PACKAGE_NAME fi - if "x$PACKAGE_VERSION_NANO" = "x0" + if test "x$PACKAGE_VERSION_NANO" = "x0" then GST_PACKAGE_NAME="$P source release" else - if "x$PACKAGE_VERSION_NANO" = "x1" + if test "x$PACKAGE_VERSION_NANO" = "x1" then GST_PACKAGE_NAME="$P git" else -- 2.7.4