summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2013-02-17 12:04:19 -0800
committerDavid Schleef <ds@schleef.org>2013-02-17 12:04:19 -0800
commite5db79947c1c611fe0adbaee1e74ee82cfd82593 (patch)
tree168694af7e7af43fefc4922686374c208103608d /m4
parent045a9aa1122cd284b2e0bb32970fc933369cc516 (diff)
Convert GST_MAJORMINOR to GST_API_VERSION
Diffstat (limited to 'm4')
-rw-r--r--m4/gst-plugindir.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/gst-plugindir.m4 b/m4/gst-plugindir.m4
index 88e4a11..9632e55 100644
--- a/m4/gst-plugindir.m4
+++ b/m4/gst-plugindir.m4
@@ -6,12 +6,12 @@ dnl AC_SUBST plugindir, to be used in Makefile.am's
AC_DEFUN([GST_SET_PLUGINDIR],
[
dnl define location of plugin directory
- AS_AC_EXPAND(PLUGINDIR, ${libdir}/gstreamer-$GST_MAJORMINOR)
+ AS_AC_EXPAND(PLUGINDIR, ${libdir}/gstreamer-$GST_API_VERSION)
AC_DEFINE_UNQUOTED(PLUGINDIR, "$PLUGINDIR",
[directory where plugins are located])
AC_MSG_NOTICE([Using $PLUGINDIR as the plugin install location])
dnl plugin directory configure-time variable for use in Makefile.am
- plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
+ plugindir="\$(libdir)/gstreamer-$GST_API_VERSION"
AC_SUBST(plugindir)
])