diff options
author | Brian Cameron <brian.cameron@sun.com> | 2006-05-18 18:39:13 +0000 |
---|---|---|
committer | Brian Cameron <bcameron@src.gnome.org> | 2006-05-18 18:39:13 +0000 |
commit | 240db8f0435074b66090e7861c9560325529d7f6 (patch) | |
tree | 8f6609b6c7b2e48b95345557de7a156e58d9375b /config | |
parent | 157575442b77d9eac56d1f236a6b591a15eb6496 (diff) | |
download | gdm-240db8f0435074b66090e7861c9560325529d7f6.tar.gz |
Do not cause make install to fail if chown fails.
2006-05-18 Brian Cameron <brian.cameron@sun.com>
* config/Makefile.am: Do not cause make install to fail if chown
fails.
Diffstat (limited to 'config')
-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 0dbae1f1..d3f8c960 100644 --- a/config/Makefile.am +++ b/config/Makefile.am @@ -216,13 +216,13 @@ install-data-hook: gdm.conf gdm.conf-custom Xsession Init PostSession PreSession if test '!' -d $(DESTDIR)$(logdir); then \ $(mkinstalldirs) $(DESTDIR)$(logdir); \ chmod 755 $(DESTDIR)$(logdir); \ - chown root:root $(DESTDIR)$(logdir); \ + chown root:root $(DESTDIR)$(logdir) || : ; \ fi if test '!' -d $(DESTDIR)$(authdir); then \ $(mkinstalldirs) $(DESTDIR)$(authdir); \ chmod 1770 $(DESTDIR)$(authdir); \ - chown root:gdm $(DESTDIR)$(authdir); \ + chown root:gdm $(DESTDIR)$(authdir) || : ; \ fi system=`uname`; \ |