]> arthur.barton.de Git - netatalk.git/blob - macros/ps-check.m4
Fix the comments.
[netatalk.git] / macros / ps-check.m4
1 dnl Autoconf macro to check for the existence of ps
2 dnl $Id: ps-check.m4,v 1.2 2002-02-14 18:02:04 jmarcus Exp $
3
4 AC_DEFUN([AC_PROG_PS], [
5 AC_REQUIRE([AC_EXEEXT])dnl
6 test x$PS = x && AC_PATH_PROG(PS, ps$EXEEXT, ps$EXEEXT)
7 test x$PS = x && AC_MSG_ERROR([no acceptable ps found in \$PATH])
8 ])
9
10 AC_SUBST(PS)