summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <daniel@mariadb.org>2021-03-18 14:35:52 +1100
committerDaniel Black <daniel@mariadb.org>2021-03-18 14:35:55 +1100
commit6974058121e6101e1b9ca2b96cb09b39064bce75 (patch)
tree261e43afeb72b0efc989c8e994611a2ccc56fad0
parent66106130a6cbe701ec07477950094fe40d9a4716 (diff)
downloadmariadb-git-6974058121e6101e1b9ca2b96cb09b39064bce75.tar.gz
mariadb.pc: plugindir is used
As evidenced by converstation on Zulip, knowing where to install a plugin is important too.
-rw-r--r--support-files/mariadb.pc.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/support-files/mariadb.pc.in b/support-files/mariadb.pc.in
index 7d321f28491..500e148d0ed 100644
--- a/support-files/mariadb.pc.in
+++ b/support-files/mariadb.pc.in
@@ -3,11 +3,12 @@ prefix=@CMAKE_INSTALL_PREFIX@
exec_prefix=${prefix}
libdir=${prefix}/@INSTALL_LIBDIR@
includedir=${prefix}/@INSTALL_INCLUDEDIR@
-# those are rarely present or not at all, but we export them regardless
+# its common to want to know where to install it.
+plugindir=${prefix}/@INSTALL_PLUGINDIR@
+# Below are rarely present or not at all, but we export them regardless
bindir=${prefix}/@INSTALL_BINDIR@
sbindir=${prefix}/@INSTALL_SBINDIR@
scriptdir=${prefix}/@INSTALL_SCRIPTDIR@
-plugindir=${prefix}/@INSTALL_PLUGINDIR@
docdir=${prefix}/@INSTALL_DOCDIR@
mandir=${prefix}/@INSTALL_MANDIR@
sharedir=${prefix}/@INSTALL_SHAREDIR@