diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-21 14:51:41 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-21 14:51:41 (EDT) |
commit | 33d188e8dddded7d3d57c202fac562041ca35357 (patch) | |
tree | a80fb6b487fd4cb53d00900afd5d436388b179c7 | |
parent | f3d0bb4176def51c8ab719e329ba1072646e38eb (diff) |
configure.ac: Drop check for make
This was most recently used in mksysconf.
-rw-r--r-- | configure.ac | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/configure.ac b/configure.ac index 52752ac..438e245 100644 --- a/configure.ac +++ b/configure.ac @@ -59,31 +59,6 @@ AC_ARG_WITH( ) AC_ARG_WITH( - [make], - [AS_HELP_STRING([--with-make=PATH], [path to make utility])], - [ - case "${withval}" in - 'yes'|'') - AC_MSG_ERROR([--with-make requires an argument]) - ;; - 'no') - AC_MSG_ERROR([make is required]) - ;; - *) - MAKE="${withval}" - AC_SUBST([MAKE]) - ;; - esac - ], - [ - AC_PATH_PROG([MAKE], [make]) - if test -z "${MAKE}"; then - AC_MSG_ERROR([make not found]) - fi - ] -) - -AC_ARG_WITH( [opkg], [AS_HELP_STRING([--with-opkg=PATH], [path to opkg utility])], [ |