From: Glenn Morris Date: Wed, 11 Jun 2014 03:33:34 +0000 (-0700) Subject: * configure.ac: Tweak previous change, for make 10+ X-Git-Tag: emacs-25.0.90~2639^2~76 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6014484659f81b35f7e6340aaf5c71ffc1fca342;p=emacs.git * configure.ac: Tweak previous change, for make 10+ --- diff --git a/configure.ac b/configure.ac index aa17bf55194..07221b0e235 100644 --- a/configure.ac +++ b/configure.ac @@ -98,7 +98,7 @@ AC_CACHE_CHECK([for GNU Make], [ac_cv_path_MAKE], if test -n "$MAKE"; then emacs_makeout=`($MAKE --version) 2>/dev/null` && case $emacs_makeout in - 'GNU Make '[[4-9]]* | 'GNU Make '3.8[[1-9]]* | 'GNU Make '3.9*) + 'GNU Make '[[1-3]][[0-9]]* | 'GNU Make '[[4-9]]* | 'GNU Make '3.8[[1-9]]* | 'GNU Make '3.9*) ac_path_MAKE_found=:;; esac ac_cv_path_MAKE=$MAKE @@ -109,7 +109,7 @@ AC_CACHE_CHECK([for GNU Make], [ac_cv_path_MAKE], AC_PATH_PROGS_FEATURE_CHECK([MAKE], [make gmake gnumake], [[emacs_makeout=`($ac_path_MAKE --version) 2>/dev/null` && case $emacs_makeout in - 'GNU Make '[4-9]* | 'GNU Make '3.8[1-9]* | 'GNU Make '3.9*) + 'GNU Make '[1-3][0-9]* | 'GNU Make '[4-9]* | 'GNU Make '3.8[1-9]* | 'GNU Make '3.9*) # Use the fully-qualified program name only if the basename # would not resolve to it. if eval \$emacs_tried_$ac_prog; then