source: rtems-schedsim/aclocal/path-ksh.m4 @ 40cadee

Last change on this file since 40cadee was 40cadee, checked in by Joel Sherrill <joel.sherrill@…>, on 05/01/13 at 00:33:31

aclocal/*.m4: Update from RTEMS

  • Property mode set to 100644
File size: 307 bytes
Line 
1AC_DEFUN([RTEMS_PATH_KSH],
2[
3dnl NOTE: prefer bash over ksh over sh
4AC_PATH_PROGS(KSH,bash ksh sh)
5if test -z "$KSH"; then
6dnl NOTE: This cannot happen -- /bin/sh must always exist
7AC_MSG_ERROR(
8[***]
9[    Cannot determine a usable shell bash/ksh/sh]
10[    Please contact your system administrator] );
11fi
12])
Note: See TracBrowser for help on using the repository browser.