]> andersk Git - openssh.git/commitdiff
[Makefile.in] use umask instead of chmod on $(PRIVSEP_PATH)
authortim <tim>
Sun, 7 Jul 2002 20:30:45 +0000 (20:30 +0000)
committertim <tim>
Sun, 7 Jul 2002 20:30:45 +0000 (20:30 +0000)
ChangeLog
Makefile.in

index 1241171f223ca4b73b6f4746987841888fbacd49..1d493f8341c52ea843f34c4714edb798a4288af1 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>
index 0d241b3691e4e418ce9f61e424e012fdde02fe09..80fb2e83bf56bd538b7bd85b2d04e3c150d8c01d 100644 (file)
@@ -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
This page took 0.183012 seconds and 5 git commands to generate.