[gdm] build: move from /var/run to /run, following systemd proposals.
- From: Ray Strode <halfline src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gdm] build: move from /var/run to /run, following systemd proposals.
- Date: Mon, 28 Jan 2013 20:17:03 +0000 (UTC)
commit dc78ecd69094a743ddb76915ee102b24596b78d7
Author: Dominique Leuenberger <dimstar opensuse org>
Date: Mon Jan 28 21:09:33 2013 +0100
build: move from /var/run to /run, following systemd proposals.
Note: this affects the following files (which have override parameters
for configure):
/var/run/gdm.pid (--with-pid-file)
/var/run/gdm/ (--with-ran-once-marker-directory)
/var/run/gdm (--with-xauth-dir)
/var/run/gdm/greeter (--with-screenshot-dir)
https://bugzilla.gnome.org/show_bug.cgi?id=692733
configure.ac | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 8ce4533..82823ea 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1354,7 +1354,7 @@ AC_ARG_WITH(pid-file,
if ! test -z "$with_pid_file"; then
GDM_PID_FILE=$with_pid_file
else
- GDM_PID_FILE=/var/run/gdm.pid
+ GDM_PID_FILE=/run/gdm.pid
fi
AC_SUBST(GDM_PID_FILE)
@@ -1371,7 +1371,7 @@ AC_ARG_WITH(ran-once-marker-directory,
if ! test -z "$with_ran_once_marker_directory"; then
GDM_RAN_ONCE_MARKER_DIR=$with_ran_once_marker_directory
else
- GDM_RAN_ONCE_MARKER_DIR=${localstatedir}/run/gdm
+ GDM_RAN_ONCE_MARKER_DIR=/run/gdm
fi
AC_SUBST(GDM_RAN_ONCE_MARKER_DIR)
AC_DEFINE_UNQUOTED(GDM_RAN_ONCE_MARKER_DIR, "$GDM_RAN_ONCE_MARKER_DIR", [ran once marker dir])
@@ -1407,7 +1407,7 @@ AC_ARG_WITH(xauth-dir,
if ! test -z "$with_xauth_dir"; then
GDM_XAUTH_DIR=$with_xauth_dir
else
- GDM_XAUTH_DIR=${localstatedir}/run/gdm
+ GDM_XAUTH_DIR=/run/gdm
fi
AC_SUBST(GDM_XAUTH_DIR)
@@ -1423,7 +1423,7 @@ AC_ARG_WITH(screenshot-dir,
if ! test -z "$with_screenshot_dir"; then
GDM_SCREENSHOT_DIR=$with_screenshot_dir
else
- GDM_SCREENSHOT_DIR=${localstatedir}/run/gdm/greeter
+ GDM_SCREENSHOT_DIR=/run/gdm/greeter
fi
AC_SUBST(GDM_SCREENSHOT_DIR)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]