From 7628b311b256beded4e4c5f744b37c925d48a6f1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Sat, 4 Oct 2008 03:01:30 +0200 Subject: [PATCH] Fix installation directory for plugins. Don't rewrite the default libdir variable for installing plugins, create a new plugindir variable and make use of that. This is important because libraries might have to be installed in a different directory (for instance on 64-bit multilib systems). In such a system, it's usual to install 64-bit libraries in $prefix/lib64 rather than $prefix/lib. --- src/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 43a7872..2b690c9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,6 +1,6 @@ -libdir=${prefix}/lib/gmpc/plugins/ +plugindir=${libdir}/gmpc/plugins/ -lib_LTLIBRARIES = qosdplugin.la +plugin_LTLIBRARIES = qosdplugin.la qosdplugin_la_SOURCES= \ plugin.c \ -- 2.11.4.GIT