summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-08-10 13:08:42 -0700
committerMarcel Holtmann <marcel@holtmann.org>2009-08-10 13:08:42 -0700
commit59d74461cd3b476050a353577c9ce08fa509b7f3 (patch)
treeffb3a79cbc35eb0ae07d7ec60f6cd34bc7ef1f27
parent49370a2e9a4068bd3e5666bb215a19ce2f0dc333 (diff)
downloadconnman-59d74461cd3b476050a353577c9ce08fa509b7f3.tar.gz
connman-59d74461cd3b476050a353577c9ce08fa509b7f3.tar.bz2
connman-59d74461cd3b476050a353577c9ce08fa509b7f3.zip
Fix typo with DBUS_DATADIR variable check
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index cfb156e0..88488af3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -247,7 +247,7 @@ AC_CHECK_LIB(dbus-1, dbus_watch_get_unix_fd, dummy=yes,
AC_SUBST(DBUS_CFLAGS)
AC_SUBST(DBUS_LIBS)
DBUS_DATADIR="`$PKG_CONFIG --variable=sysconfdir dbus-1`"
-if (test -z "{DBUS_DATADIR}"); then
+if (test -z "${DBUS_DATADIR}"); then
DBUS_DATADIR="${sysconfdir}/dbus-1/system.d"
else
DBUS_DATADIR="$DBUS_DATADIR/dbus-1/system.d"