]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
[Makefile.in] use umask instead of chmod on $(PRIVSEP_PATH)
authorTim Rice <tim@multitalents.net>
Sun, 7 Jul 2002 20:30:45 +0000 (13:30 -0700)
committerTim Rice <tim@multitalents.net>
Sun, 7 Jul 2002 20:30:45 +0000 (13:30 -0700)
ChangeLog
Makefile.in

index 3ecfb8bf7b95892bff3c1b6573bb203c0d9b2dff..d94a6e3425b6bed4db9f53611ec63dcf04e81678 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+20020707
+ - (tim) [Makefile.in] use umask instead of chmod on $(PRIVSEP_PATH)
+
 20020705
  - (tim) [configure.ac] AIX 4.2.1 has authenticate() in libs.
    Reported by Darren Tucker <dtucker@zip.com.au>
  - (stevesk) entropy.c: typo in debug message
  - (djm) ssh-keygen -i needs seeded RNG; report from markus@
 
-$Id: ChangeLog,v 1.2337 2002/07/05 23:22:32 tim Exp $
+$Id: ChangeLog,v 1.2338 2002/07/07 20:30:45 tim Exp $
index 363d0ab1e811abdd3f7450697123d8914c67dbc0..8b341dc00ce7a567d664805f0ad61ee1c4c00f43 100644 (file)
@@ -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