summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorGeorge Lebl <jirka@5z.com>2004-05-28 19:35:31 +0000
committerGeorge Lebl <jirka@src.gnome.org>2004-05-28 19:35:31 +0000
commite98cd75686fae7539074a4f3947152ffa916daf7 (patch)
tree33224773d3eceb6576bb40c7bde7868634a78436 /config
parent7ffd705c444ea4694927ba863792b3510f5f17e7 (diff)
downloadgdm-e98cd75686fae7539074a4f3947152ffa916daf7.tar.gz
solaris chown doesn't like a dot separator but : is the standard separator
Fri May 28 12:35:22 2004 George Lebl <jirka@5z.com> * gui/gdmsetup.c, config/Makefile.am: solaris chown doesn't like a dot separator but : is the standard separator and works for gnu chown as well, so switch to that. Thanks to vix@vazka.sk (Ivan Noris). Fixes #142732
Diffstat (limited to 'config')
-rw-r--r--config/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/Makefile.am b/config/Makefile.am
index 8d237141..45f6e47d 100644
--- a/config/Makefile.am
+++ b/config/Makefile.am
@@ -139,13 +139,13 @@ install-data-hook: gdm.conf Xsession gnome.desktop default.desktop CDE.desktop D
if test '!' -d $(DESTDIR)$(logdir); then \
$(mkinstalldirs) $(DESTDIR)$(logdir); \
- chown root.root $(DESTDIR)$(logdir); \
+ chown root:root $(DESTDIR)$(logdir); \
chmod 755 $(DESTDIR)$(logdir); \
fi
if test '!' -d $(DESTDIR)$(authdir); then \
$(mkinstalldirs) $(DESTDIR)$(authdir); \
- chown root.gdm $(DESTDIR)$(authdir); \
+ chown root:gdm $(DESTDIR)$(authdir); \
chmod 1770 $(DESTDIR)$(authdir); \
fi