diff options
author | Matthieu Longo <matthieu.longo@arm.com> | 2024-05-28 10:49:46 +0100 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2024-06-10 08:25:56 +0930 |
commit | de278b64701654cb77624319563f8e4fe6077b0d (patch) | |
tree | a98bed1e339fec6915e56d513e2be3ec40e67d4b | |
parent | 28ea7ae220a0343ff7fe531ec761bd77d00dcb1c (diff) | |
download | gdb-de278b64701654cb77624319563f8e4fe6077b0d.zip gdb-de278b64701654cb77624319563f8e4fe6077b0d.tar.gz gdb-de278b64701654cb77624319563f8e4fe6077b0d.tar.bz2 |
autoupdate: add square brackets around argument of AC_PREREQ
https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.72/autoconf.html#index-AC_005fPREREQ-1
-rw-r--r-- | libctf/configure.ac | 2 | ||||
-rw-r--r-- | readline/readline/configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libctf/configure.ac b/libctf/configure.ac index ced1aeb..51ad76e 100644 --- a/libctf/configure.ac +++ b/libctf/configure.ac @@ -18,7 +18,7 @@ dnl along with this program; see the file COPYING. If not see dnl <http://www.gnu.org/licenses/>. dnl -AC_PREREQ(2.64) +AC_PREREQ([2.64]) AC_INIT([libctf], 1.2.0) AC_CONFIG_SRCDIR(ctf-impl.h) AC_CANONICAL_BUILD diff --git a/readline/readline/configure.ac b/readline/readline/configure.ac index 9ea2a6b..6a9d77f 100644 --- a/readline/readline/configure.ac +++ b/readline/readline/configure.ac @@ -27,7 +27,7 @@ m4_include([../../config/override.m4]) AC_INIT(readline, 8.1, bug-readline@gnu.org) dnl make sure we are using a recent autoconf version -AC_PREREQ(2.50) +AC_PREREQ([2.50]) AC_CONFIG_SRCDIR(readline.h) dnl GDB LOCAL |