diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2018-03-19 22:37:54 +0100 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2018-03-19 22:37:54 +0100 |
commit | 98eaa3fb9c5b57d37c08725e306118e58036374f (patch) | |
tree | e738a66096d687626375329f901d12a5a9d435c2 /configure.ac | |
parent | bb8414e00d86e5c127b88f732b6fa119cb47fb32 (diff) | |
download | mcron-98eaa3fb9c5b57d37c08725e306118e58036374f.tar.gz mcron-98eaa3fb9c5b57d37c08725e306118e58036374f.tar.bz2 mcron-98eaa3fb9c5b57d37c08725e306118e58036374f.zip |
maint: Remove obsolete configure checks
* configure.ac: Don't check for 'sed' and 'cp' programs which are
considered portable. Don't check for 'head' and 'which' programs which
are not required.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/configure.ac b/configure.ac index 0ce6475..f741d1a 100644 --- a/configure.ac +++ b/configure.ac @@ -49,24 +49,6 @@ GUILE_PROGS AM_MISSING_PROG(HELP2MAN, help2man, $missing_dir) -AC_CHECK_PROGS(SED, sed) -if test "x$ac_cv_prog_SED" = "x"; then - AC_MSG_ERROR(sed not found) -fi -AC_CHECK_PROGS(HEAD, head) -if test "x$ac_cv_prog_HEAD" = "x"; then - AC_MSG_ERROR(head not found) -fi -AC_CHECK_PROGS(WHICH, which) -if test "x$ac_cv_prog_WHICH" = "x"; then - AC_MSG_ERROR(which not found) -fi -AC_CHECK_PROGS(CP, cp) -if test "x$ac_cv_prog_CP" = "x"; then - AC_MSG_ERROR(cp not found) -fi - - # Now find a sendmail or equivalent. AC_CHECK_PROGS(SENDMAIL, sendmail) |