summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Droege <slomo@ubuntu.com>2005-12-04 19:26:52 +0000
committerSebastian Droege <slomo@ubuntu.com>2005-12-04 19:26:52 +0000
commita0383cf3e7cfabdad3e25b7bda5f33d2cd8c94d6 (patch)
tree3adbef7f9a067d4cd7160212eedbf67b44923cb5
parent5ce17adcb1ff31ffdc2618fcf4788beecc1e1ff8 (diff)
* Use ${pkgdatadir} instead of ${datadir}/${PACKAGE}
git-svn-id: file:///home/lennart/svn/public/service-discovery-applet/trunk@81 3be567f1-68ff-0310-b24a-ad7cc433fd2f
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 36a33d4..c49b777 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,19 +23,19 @@ AM_CHECK_PYMOD(avahi,,,[AC_MSG_ERROR(Could not find Python module avahi)])
dnl ========================================================
dnl Directory where services' plugins will be installed
dnl ========================================================
-PLUGINSDIR="${datadir}/${PACKAGE}/plugins/"
+PLUGINSDIR="${pkgdatadir}/plugins/"
AC_SUBST(PLUGINSDIR)
dnl ========================================================
dnl Directory where services' icons will be installed
dnl ========================================================
-ICONSDIR="${datadir}/${PACKAGE}/icons/"
+ICONSDIR="${pkgdatadir}/icons/"
AC_SUBST(ICONSDIR)
dnl ========================================================
dnl Directory where glade interfaces will be installed
dnl ========================================================
-INTERFACESDIR="${datadir}/${PACKAGE}/interfaces/"
+INTERFACESDIR="${pkgdatadir}/interfaces/"
AC_SUBST(INTERFACESDIR)
dnl ========================================================