diff options
author | Tim Rice <tim@multitalents.net> | 2002-07-07 22:30:45 +0200 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2002-07-07 22:30:45 +0200 |
commit | cc25206d31a783c9c0834f59904d97bc1cba3f07 (patch) | |
tree | 3eb2580e357d53cf65b2031d9aab13a1cad51b3a /Makefile.in | |
parent | Added author to ports-aix.[ch]. (diff) | |
download | openssh-cc25206d31a783c9c0834f59904d97bc1cba3f07.tar.xz openssh-cc25206d31a783c9c0834f59904d97bc1cba3f07.zip |
[Makefile.in] use umask instead of chmod on $(PRIVSEP_PATH)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 363d0ab1e..8b341dc00 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -# $Id: Makefile.in,v 1.218 2002/07/04 03:07:15 mouring Exp $ +# $Id: Makefile.in,v 1.219 2002/07/07 20:30:46 tim Exp $ # uncomment if you run a non bourne compatable shell. Ie. csh #SHELL = @SH@ @@ -217,8 +217,7 @@ install-files: scard-install $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)5 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8 $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir) - $(srcdir)/mkinstalldirs $(DESTDIR)$(PRIVSEP_PATH) - chmod 0700 $(DESTDIR)$(PRIVSEP_PATH) + (umask 022 ; $(srcdir)/mkinstalldirs $(DESTDIR)$(PRIVSEP_PATH)) $(INSTALL) -m 0755 -s ssh $(DESTDIR)$(bindir)/ssh $(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add |