diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-11-19 10:24:26 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-11-19 10:27:49 +0000 |
commit | 53a2485bb2a648f38767a310caebe1b2679f0cea (patch) | |
tree | b0471b63840453e3a657ee3712ef8dc4571fe56e /m4/gst-args.m4 | |
parent | 18612522c062bceacfe3952d89e850a0ca3d412a (diff) |
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.m4 | 4 |
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 |