diff options
author | Brian Cameron <brian.cameron@sun.com> | 2006-05-09 19:47:39 +0000 |
---|---|---|
committer | Brian Cameron <bcameron@src.gnome.org> | 2006-05-09 19:47:39 +0000 |
commit | 18a74df4d79e89610321b8484859fad73b0b09b6 (patch) | |
tree | 042ae95bfa4f2ea2a45ce723d83453510c7f5ab6 /config/Makefile.am | |
parent | cdfcdb195ed154827ac86b27e3fcbfa598481cb0 (diff) | |
download | gdm-18a74df4d79e89610321b8484859fad73b0b09b6.tar.gz |
Do chown after chmod.
2006-05-09 Brian Cameron <brian.cameron@sun.com>
* config/Makefile.am: Do chown after chmod.
Diffstat (limited to 'config/Makefile.am')
-rw-r--r-- | config/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
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`; \ |