diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2009-08-10 13:08:42 -0700 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-08-10 13:08:42 -0700 |
commit | 59d74461cd3b476050a353577c9ce08fa509b7f3 (patch) | |
tree | ffb3a79cbc35eb0ae07d7ec60f6cd34bc7ef1f27 /configure.ac | |
parent | 49370a2e9a4068bd3e5666bb215a19ce2f0dc333 (diff) | |
download | connman-59d74461cd3b476050a353577c9ce08fa509b7f3.tar.gz connman-59d74461cd3b476050a353577c9ce08fa509b7f3.tar.bz2 connman-59d74461cd3b476050a353577c9ce08fa509b7f3.zip |
Fix typo with DBUS_DATADIR variable check
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
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" |