summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Cameron <brian.cameron@sun.com>2006-05-09 19:47:39 +0000
committerBrian Cameron <bcameron@src.gnome.org>2006-05-09 19:47:39 +0000
commit18a74df4d79e89610321b8484859fad73b0b09b6 (patch)
tree042ae95bfa4f2ea2a45ce723d83453510c7f5ab6
parentcdfcdb195ed154827ac86b27e3fcbfa598481cb0 (diff)
downloadgdm-18a74df4d79e89610321b8484859fad73b0b09b6.tar.gz
Do chown after chmod.
2006-05-09 Brian Cameron <brian.cameron@sun.com> * config/Makefile.am: Do chown after chmod.
-rw-r--r--ChangeLog4
-rw-r--r--config/Makefile.am4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 76092574..de4999b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2006-05-09 Brian Cameron <brian.cameron@sun.com>
+ * config/Makefile.am: Do chown after chmod.
+
+2006-05-09 Brian Cameron <brian.cameron@sun.com>
+
* configure.ac, config/Makefile.am, utils/Makefile.am: Fix the
installation of ssh.desktop and gdm-ssh-session so that the
desktop file is translated and gdm-ssh-session is installed
diff --git a/config/Makefile.am b/config/Makefile.am
index 11948d47..73427c0d 100644
--- a/config/Makefile.am
+++ b/config/Makefile.am
@@ -215,14 +215,14 @@ install-data-hook: gdm.conf gdm.conf-custom Xsession Init PostSession PreSession
if test '!' -d $(DESTDIR)$(logdir); then \
$(mkinstalldirs) $(DESTDIR)$(logdir); \
- chown root:root $(DESTDIR)$(logdir); \
chmod 755 $(DESTDIR)$(logdir); \
+ chown root:root $(DESTDIR)$(logdir); \
fi
if test '!' -d $(DESTDIR)$(authdir); then \
$(mkinstalldirs) $(DESTDIR)$(authdir); \
- chown root:gdm $(DESTDIR)$(authdir); \
chmod 1770 $(DESTDIR)$(authdir); \
+ chown root:gdm $(DESTDIR)$(authdir); \
fi
system=`uname`; \