summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Droege <slomo@ubuntu.com>2006-01-21 00:36:12 +0000
committerSebastian Droege <slomo@ubuntu.com>2006-01-21 00:36:12 +0000
commit2d6a15850fb6f55379089273b7229fcaf36df480 (patch)
tree1f31eaef927d342214d9862d00ba5614edc0a80c
parent9dfa1e044da46bb6672018583ccb4fb77d75b004 (diff)
* use pkgdatadir correctly
git-svn-id: file:///home/lennart/svn/public/service-discovery-applet/trunk@87 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 f366daa..133816f 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="${pkgdatadir}/plugins/"
+PLUGINSDIR="\$(pkgdatadir)/plugins/"
AC_SUBST(PLUGINSDIR)
dnl ========================================================
dnl Directory where services' icons will be installed
dnl ========================================================
-ICONSDIR="${pkgdatadir}/icons/"
+ICONSDIR="\$(pkgdatadir)/icons/"
AC_SUBST(ICONSDIR)
dnl ========================================================
dnl Directory where glade interfaces will be installed
dnl ========================================================
-INTERFACESDIR="${pkgdatadir}/interfaces/"
+INTERFACESDIR="\$(pkgdatadir)/interfaces/"
AC_SUBST(INTERFACESDIR)
dnl ========================================================