summaryrefslogtreecommitdiff
path: root/m4/gst-args.m4
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2009-11-19 10:24:26 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-11-19 10:27:49 +0000
commit53a2485bb2a648f38767a310caebe1b2679f0cea (patch)
treeb0471b63840453e3a657ee3712ef8dc4571fe56e /m4/gst-args.m4
parent18612522c062bceacfe3952d89e850a0ca3d412a (diff)
downloadgstreamer-common-53a2485bb2a648f38767a310caebe1b2679f0cea.tar.gz
gst-args: fix version checking
Without the 'test' configure will look for a binary call x and fail to find it..
Diffstat (limited to 'm4/gst-args.m4')
-rw-r--r--m4/gst-args.m44
1 files 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