summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2002-05-08 16:04:14 -0700
committerTim Rice <tim@multitalents.net>2002-05-08 16:04:14 -0700
commit0502a471e02b1b6e8ec5b0134766b28694b760a8 (patch)
treef41e08495c81eb8bdb561d1f25d85328ef1d262f
parent63cf84199df312830144db03f8defd88168335a0 (diff)
set SHELL in Makefile in case someone makes from a non bourne compatable shell
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.in4
-rw-r--r--configure.ac3
3 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index ecb62d8cb..d71072f3f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
120020507 120020507
2 - (tim) [openbsd-compat/bsd-arc4random.c] fix logic on when seed_rng() is 2 - (tim) [openbsd-compat/bsd-arc4random.c] fix logic on when seed_rng() is
3 called. Report by Chris Maxwell <maxwell@cs.dal.ca> 3 called. Report by Chris Maxwell <maxwell@cs.dal.ca>
4 - (tim) [Makefile.in configure.ac] set SHELL variable in Makefile
4 5
520020507 620020507
6 - (tim) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h] 7 - (tim) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
@@ -543,4 +544,4 @@
543 - (stevesk) entropy.c: typo in debug message 544 - (stevesk) entropy.c: typo in debug message
544 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 545 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
545 546
546$Id: ChangeLog,v 1.2097 2002/05/08 22:57:18 tim Exp $ 547$Id: ChangeLog,v 1.2098 2002/05/08 23:04:14 tim Exp $
diff --git a/Makefile.in b/Makefile.in
index 5d45bce65..62859bf13 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,6 @@
1# $Id: Makefile.in,v 1.204 2002/04/15 03:24:00 djm Exp $ 1# $Id: Makefile.in,v 1.205 2002/05/08 23:04:14 tim Exp $
2
3SHELL = @SH@
2 4
3prefix=@prefix@ 5prefix=@prefix@
4exec_prefix=@exec_prefix@ 6exec_prefix=@exec_prefix@
diff --git a/configure.ac b/configure.ac
index cc79ce8ad..6f2f9baf8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.54 2002/05/08 02:51:32 tim Exp $ 1# $Id: configure.ac,v 1.55 2002/05/08 23:04:14 tim Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -21,6 +21,7 @@ AC_PATH_PROGS(FILEPRIV, filepriv, true, /sbin:/usr/sbin)
21AC_PATH_PROG(TEST_MINUS_S_SH, bash) 21AC_PATH_PROG(TEST_MINUS_S_SH, bash)
22AC_PATH_PROG(TEST_MINUS_S_SH, ksh) 22AC_PATH_PROG(TEST_MINUS_S_SH, ksh)
23AC_PATH_PROG(TEST_MINUS_S_SH, sh) 23AC_PATH_PROG(TEST_MINUS_S_SH, sh)
24AC_PATH_PROG(SH, sh)
24 25
25# System features 26# System features
26AC_SYS_LARGEFILE 27AC_SYS_LARGEFILE