summaryrefslogtreecommitdiffstats
path: root/c/src/aclocal/path-ksh.m4
blob: 306c4ca2e70b42a809f4f5372f0f8c13193f9add (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
dnl $Id$

AC_DEFUN([RTEMS_PATH_KSH],
[
dnl NOTE: prefer bash over ksh over sh
AC_PATH_PROGS(KSH,bash ksh sh)
if test -z "$KSH"; then
dnl NOTE: This cannot happen -- /bin/sh must always exist
AC_MSG_ERROR(
[***]
[    Cannot determine a usable shell bash/ksh/sh]
[    Please contact your system administrator] );
fi
])