diff options
author | William Jon McCann <mccann@jhu.edu> | 2007-03-27 14:24:41 +0000 |
---|---|---|
committer | William Jon McCann <mccann@src.gnome.org> | 2007-03-27 14:24:41 +0000 |
commit | 779731248273714f6b9c321204ba8bc83bd65802 (patch) | |
tree | 1a38aff0cbdb2faf07bdc896bc6bf4f9513f4da9 /configure.ac | |
parent | d62b4d4abdc450d1b63782688ada7ebbd852f9b7 (diff) | |
download | gdm-779731248273714f6b9c321204ba8bc83bd65802.tar.gz |
Make sure that we expand the LOCALSTATEDIR before using it to find the PID
2007-03-27 William Jon McCann <mccann@jhu.edu>
* acinclude.m4:
* configure.ac: Make sure that we expand the LOCALSTATEDIR
before using it to find the PID file location.
For #162849.
svn path=/trunk/; revision=4732
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 9d2ca268..e1490981 100644 --- a/configure.ac +++ b/configure.ac @@ -1115,6 +1115,18 @@ if test "x$USER_POST_PATH" != "x"; then fi dnl --------------------------------------------------------------------------- +dnl Expand vars +dnl --------------------------------------------------------------------------- + +AS_AC_EXPAND(LOCALSTATEDIR, $localstatedir) +AS_AC_EXPAND(SYSCONFDIR, $sysconfdir) +AS_AC_EXPAND(DATADIR, $datadir) +AS_AC_EXPAND(BINDIR, $bindir) +AS_AC_EXPAND(SBINDIR, $sbindir) +AS_AC_EXPAND(LIBDIR, $libdir) +AS_AC_EXPAND(LIBEXECDIR, $libexecdir) + +dnl --------------------------------------------------------------------------- dnl - PID file dnl --------------------------------------------------------------------------- |