summaryrefslogblamecommitdiffstats
path: root/aclocal/path-ksh.m4
blob: 2c79b31d1e02e8f64b4e227bfc7c1fbfc0995b7b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                          










                                                         
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
])