diff options
| author | Mark Eichin <eichin@mit.edu> | 1995-04-28 20:18:19 +0000 |
|---|---|---|
| committer | Mark Eichin <eichin@mit.edu> | 1995-04-28 20:18:19 +0000 |
| commit | 3cccf37a987127d31d3d7f2d0a4d8eea38601050 (patch) | |
| tree | 077e183f52ebcf60bd8e4fe9ba93a80d4c7bc75b /src | |
| parent | 6d27ee3ea49f6494997e91439deb381e72f7ac12 (diff) | |
| download | krb5-3cccf37a987127d31d3d7f2d0a4d8eea38601050.tar.gz krb5-3cccf37a987127d31d3d7f2d0a4d8eea38601050.tar.xz krb5-3cccf37a987127d31d3d7f2d0a4d8eea38601050.zip | |
* 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
Diffstat (limited to 'src')
| -rw-r--r-- | src/appl/bsd/ChangeLog | 7 | ||||
| -rw-r--r-- | src/appl/bsd/configure.in | 2 |
2 files changed, 9 insertions, 0 deletions
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 <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 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]) |
