aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-10-22 17:36:34 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-10-22 18:35:08 +0800
commit4b0430db4bf7cdbef60290bdcca94bd1e5cf05d3 (patch)
tree79d5be6f9940650b0868a15fca6bddba249f3200
parent35b9f0c90f66e81f5008ff866b5b4b4b47aae0a5 (diff)
downloadgsoc2013-empathy-4b0430db4bf7cdbef60290bdcca94bd1e5cf05d3.tar
gsoc2013-empathy-4b0430db4bf7cdbef60290bdcca94bd1e5cf05d3.tar.gz
gsoc2013-empathy-4b0430db4bf7cdbef60290bdcca94bd1e5cf05d3.tar.bz2
gsoc2013-empathy-4b0430db4bf7cdbef60290bdcca94bd1e5cf05d3.tar.lz
gsoc2013-empathy-4b0430db4bf7cdbef60290bdcca94bd1e5cf05d3.tar.xz
gsoc2013-empathy-4b0430db4bf7cdbef60290bdcca94bd1e5cf05d3.tar.zst
gsoc2013-empathy-4b0430db4bf7cdbef60290bdcca94bd1e5cf05d3.zip
use the plugindir pc variable from MC
The whole point of this variable is to give us the path where plugins are supposed to be installed. We should just use it instead of re-implementing it assuming the location.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index b0a4b80c8..9c127ed8b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -591,7 +591,7 @@ AM_CONDITIONAL(HAVE_UOA, test "x$have_uoa" = "xyes")
if test "x$have_uoa" = "xyes" -o "x$have_goa" = "xyes"; then
AC_MSG_CHECKING([Mission Control plugins dir])
- MISSION_CONTROL_PLUGINS_DIR=${libdir}/mission-control-plugins.`pkg-config --variable=MCP_ABI_VERSION mission-control-plugins`
+ MISSION_CONTROL_PLUGINS_DIR=`pkg-config --define-variable=libdir='${libdir}' --variable=plugindir mission-control-plugins`
AC_MSG_RESULT([$MISSION_CONTROL_PLUGINS_DIR])
AC_SUBST(MISSION_CONTROL_PLUGINS_DIR)