* configure.in (PATH): use internal AC_CHECK_ECHO_N because change
authorMark Eichin <eichin@mit.edu>
Fri, 28 Apr 1995 20:18:19 +0000 (20:18 +0000)
committerMark Eichin <eichin@mit.edu>
Fri, 28 Apr 1995 20:18:19 +0000 (20:18 +0000)
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
src/appl/bsd/configure.in

index 3d458cb8a44da4c817db534a6407bd8e730b3919..41ed78efb1089379133deed81d5918157af35d17 100644 (file)
@@ -1,3 +1,10 @@
+Fri Apr 28 16:12:57 1995  Mark Eichin  <eichin@cygnus.com>
+
+       * 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  <tytso@lurch.mit.edu>
 
        * login.c: Lots of lint cleanup; declare functions before they
index eefd9922a2fb486367684d949b9e6dffff536aec..ad45ae29e1928d11ed89f4f6ec11760124aa3df4 100644 (file)
@@ -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])