From 3cccf37a987127d31d3d7f2d0a4d8eea38601050 Mon Sep 17 00:00:00 2001 From: Mark Eichin Date: Fri, 28 Apr 1995 20:18:19 +0000 Subject: [PATCH] * configure.in (PATH): use internal AC_CHECK_ECHO_N because change in path might change behavior of echo (example: solaris, native shell, with GNU echo (-n) in user path, but only Solaris echo (\c) in path here.) (AC_PATH_PROG should probably get fixed, to deal with this possibility. Later.) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5632 dc483132-0cff-0310-8789-dd5450dbe970 --- src/appl/bsd/ChangeLog | 7 +++++++ src/appl/bsd/configure.in | 2 ++ 2 files changed, 9 insertions(+) diff --git a/src/appl/bsd/ChangeLog b/src/appl/bsd/ChangeLog index 3d458cb8a..41ed78efb 100644 --- a/src/appl/bsd/ChangeLog +++ b/src/appl/bsd/ChangeLog @@ -1,3 +1,10 @@ +Fri Apr 28 16:12:57 1995 Mark Eichin + + * configure.in (PATH): use internal AC_CHECK_ECHO_N because change + in path might change behavior of echo (example: solaris, native + shell, with GNU echo (-n) in user path, but only Solaris echo (\c) + in path here.) + Fri Apr 28 07:52:45 1995 Theodore Y. Ts'o * login.c: Lots of lint cleanup; declare functions before they diff --git a/src/appl/bsd/configure.in b/src/appl/bsd/configure.in index eefd9922a..ad45ae29e 100644 --- a/src/appl/bsd/configure.in +++ b/src/appl/bsd/configure.in @@ -54,11 +54,13 @@ dnl dnl Check for where the BSD rlogin, rcp, and rsh programs live. dnl save_path=$PATH +AC_CHECK_ECHO_N PATH=/bin:/usr/bin:/usr/bsd:/usr/ucb AC_PATH_PROG(UCB_RLOGIN,rlogin,/usr/ucb/rlogin) AC_PATH_PROG(UCB_RSH,rsh,/usr/ucb/rsh) AC_PATH_PROG(UCB_RCP,rcp,/usr/ucb/rcp) PATH=$save_path +AC_CHECK_ECHO_N dnl dnl AC_MSG_CHECKING([streams interface]) -- 2.26.2