gst-args: fix version checking
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 19 Nov 2009 10:24:26 +0000 (10:24 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 19 Nov 2009 10:27:49 +0000 (10:27 +0000)
Without the 'test' configure will look for a binary call x and
fail to find it..

m4/gst-args.m4

index 8c58667..ccdd4da 100644 (file)
@@ -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