summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Holdsworth <joel.holdsworth@vcatechnology.com>2015-12-09 18:24:50 +0200
committerSreerenj Balachandran <sreerenj.balachandran@intel.com>2015-12-09 18:24:50 +0200
commit1a84348e766220831aa26bfa50b8aeefec0ebdd4 (patch)
treee40dcb2ef2f76473fadb6611f230583628571d25
parent61045041c4e9f8159e3262ae0df0949d889804ef (diff)
downloadgst-vaapi-1a84348e766220831aa26bfa50b8aeefec0ebdd4.tar.gz
build: Don't ignore GST_PLUGIN_PATH_1_0 even if the directory doesn't exist yet
https://bugzilla.gnome.org/show_bug.cgi?id=759184
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index df0a948e..e29ada93 100644
--- a/configure.ac
+++ b/configure.ac
@@ -526,7 +526,7 @@ AC_SUBST(GST_PLUGIN_LDFLAGS)
dnl Check for the GStreamer plugins directory
AC_ARG_VAR([GST_PLUGIN_PATH_1_0], [installation path for gstreamer-vaapi plugin elements for GStreamer 1.0])
AC_MSG_CHECKING([for GStreamer plugins directory])
-if test -d "$GST_PLUGIN_PATH_1_0"; then
+if test -n "$GST_PLUGIN_PATH_1_0"; then
GST_PLUGINS_DIR="$GST_PLUGIN_PATH_1_0"
else
GST_PLUGINS_DIR=`$PKG_CONFIG gstreamer-$GST_PKG_VERSION --variable pluginsdir`