diff options
-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])], [ |