summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2002-07-07 13:30:45 -0700
committerTim Rice <tim@multitalents.net>2002-07-07 13:30:45 -0700
commitcc25206d31a783c9c0834f59904d97bc1cba3f07 (patch)
tree3eb2580e357d53cf65b2031d9aab13a1cad51b3a
parent024f08f3f68060d65cdfe083fe30ef53524c56c0 (diff)
[Makefile.in] use umask instead of chmod on $(PRIVSEP_PATH)
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in5
2 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 3ecfb8bf7..d94a6e342 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
120020707
2 - (tim) [Makefile.in] use umask instead of chmod on $(PRIVSEP_PATH)
3
120020705 420020705
2 - (tim) [configure.ac] AIX 4.2.1 has authenticate() in libs. 5 - (tim) [configure.ac] AIX 4.2.1 has authenticate() in libs.
3 Reported by Darren Tucker <dtucker@zip.com.au> 6 Reported by Darren Tucker <dtucker@zip.com.au>
@@ -1280,4 +1283,4 @@
1280 - (stevesk) entropy.c: typo in debug message 1283 - (stevesk) entropy.c: typo in debug message
1281 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 1284 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
1282 1285
1283$Id: ChangeLog,v 1.2337 2002/07/05 23:22:32 tim Exp $ 1286$Id: ChangeLog,v 1.2338 2002/07/07 20:30:45 tim Exp $
diff --git a/Makefile.in b/Makefile.in
index 363d0ab1e..8b341dc00 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.218 2002/07/04 03:07:15 mouring Exp $ 1# $Id: Makefile.in,v 1.219 2002/07/07 20:30:46 tim Exp $
2 2
3# uncomment if you run a non bourne compatable shell. Ie. csh 3# uncomment if you run a non bourne compatable shell. Ie. csh
4#SHELL = @SH@ 4#SHELL = @SH@
@@ -217,8 +217,7 @@ install-files: scard-install
217 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)5 217 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)5
218 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8 218 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
219 $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir) 219 $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
220 $(srcdir)/mkinstalldirs $(DESTDIR)$(PRIVSEP_PATH) 220 (umask 022 ; $(srcdir)/mkinstalldirs $(DESTDIR)$(PRIVSEP_PATH))
221 chmod 0700 $(DESTDIR)$(PRIVSEP_PATH)
222 $(INSTALL) -m 0755 -s ssh $(DESTDIR)$(bindir)/ssh 221 $(INSTALL) -m 0755 -s ssh $(DESTDIR)$(bindir)/ssh
223 $(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp 222 $(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp
224 $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add 223 $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add