source: rtems/aclocal/path-ksh.m4 @ 33a105fb

4.115
Last change on this file since 33a105fb was 33a105fb, checked in by Joel Sherrill <joel.sherrill@…>, on 05/07/12 at 16:08:48

Revert: Remove CVS Ids

See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html
for details.

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