source: rtems/aclocal/path-ksh.m4 @ aa7428a

4.104.114.84.95
Last change on this file since aa7428a was b64b1ed, checked in by Joel Sherrill <joel.sherrill@…>, on 03/18/99 at 22:36:28

Patch from Ralf Corsepius <corsepiu@…>:

Moves some configure.in fragments to new macro files below aclocal/
(Motivation: Prepare splitting the toplevel configure.in script)

  • Property mode set to 100644
File size: 315 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.