diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.in | 5 |
2 files changed, 6 insertions, 4 deletions
@@ -1,3 +1,6 @@ | |||
1 | 20020707 | ||
2 | - (tim) [Makefile.in] use umask instead of chmod on $(PRIVSEP_PATH) | ||
3 | |||
1 | 20020705 | 4 | 20020705 |
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 |