From 486ad0ba5c8ec68e3978d66aecb21d2efd764753 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Wed, 4 Nov 2015 15:37:34 +0100 Subject: [PATCH] configure.ac: don't use an undefined variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If the environment lacks of gstreamer development packages, this error will be reported to the user: "gstreamer- was not found" This is because we are using an undefined variable in the printed message. The fix simple changes the variable for the hard-coded string "1.0". Signed-off-by: Víctor Manuel Jáquez Leal https://bugzilla.gnome.org/show_bug.cgi?id=757283 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1c538a3827..f4f1ef0448 100644 --- a/configure.ac +++ b/configure.ac @@ -200,7 +200,7 @@ if $PKG_CONFIG --exists "gstreamer-1.0"; then GST_PKG_VERSION="1.0" fi if test -z "$GST_PKG_VERSION"; then - AC_MSG_ERROR([gstreamer-$GST_PKG_VERSION was not found]) + AC_MSG_ERROR([gstreamer-1.0 was not found]) fi AC_MSG_RESULT([$GST_API_VERSION])