diff options
| author | Andreas Schwab <schwab@linux-m68k.org> | 2026-05-29 15:41:58 +0200 |
|---|---|---|
| committer | Andreas Schwab <schwab@linux-m68k.org> | 2026-05-29 15:42:38 +0200 |
| commit | 5c36f6c2283590d30b36f04d0e66eb2a9aacf32b (patch) | |
| tree | 84ca628e009b80ceda73e783ebc792b8a7a01551 | |
| parent | ee1092aaace1dfa18597be2c2d8a90911d5cbc23 (diff) | |
Fix overquoting in gl_SET_MAKEINFO
| -rw-r--r-- | m4/texinfo.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/texinfo.m4 b/m4/texinfo.m4 index e5316d5b590..251d039df2c 100644 --- a/m4/texinfo.m4 +++ b/m4/texinfo.m4 @@ -17,9 +17,9 @@ AC_DEFUN([gl_SET_MAKEINFO],[dnl [## Require makeinfo >= 4.13 (last of the 4.x series) to build the manuals. : ${MAKEINFO:=makeinfo} case `($MAKEINFO --version) 2>/dev/null` in - *' (GNU texinfo) '4.1[[3-9]]* | \ - *' (GNU texinfo) '[[5-9]]* | \ - *' (GNU texinfo) '[[1-9][0-9]]* ) ;; + *' (GNU texinfo) '4.1[3-9]* | \ + *' (GNU texinfo) '[5-9]* | \ + *' (GNU texinfo) '[1-9][0-9]* ) ;; *) MAKEINFO=no;; esac |
