diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2016-02-09 09:01:58 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2016-02-09 09:01:58 -0500 |
commit | 1e94266c4db633f7defaf4bb68c74fd09a9cf9e2 (patch) | |
tree | d5e184312fa541f34cad8c389f124c176a4c96ea /gdb/testsuite/configure.ac | |
parent | 2a7f3dffced7a20c992e1488d9f05fed8b8001fd (diff) | |
download | gdb-1e94266c4db633f7defaf4bb68c74fd09a9cf9e2.zip gdb-1e94266c4db633f7defaf4bb68c74fd09a9cf9e2.tar.gz gdb-1e94266c4db633f7defaf4bb68c74fd09a9cf9e2.tar.bz2 |
Modernize configure.ac's
Using AC_OUTPUT with arguments has been deprecated for some time in
autoconf, even in version 2.64, which we are using. This change should
not affect functionality.
I also removed the "exit 0"'s, they shouldn't be necessary.
gdb/ChangeLog:
* configure.ac: Use AC_CONFIG_FILES instead of passing arguments
to AC_OUTPUT. Remove "exit 0" at the end.
* configure: Regenerate.
gdb/testsuite/ChangeLog:
* configure.ac: Use AC_CONFIG_FILES instead of passing arguments
to AC_OUTPUT.
* configure: Regenerate.
gdb/gdbserver/ChangeLog:
* configure.ac: Use AC_CONFIG_FILES instead of passing arguments
to AC_OUTPUT.
* configure: Regenerate.
Diffstat (limited to 'gdb/testsuite/configure.ac')
-rw-r--r-- | gdb/testsuite/configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/testsuite/configure.ac b/gdb/testsuite/configure.ac index c372af5..91e5d22 100644 --- a/gdb/testsuite/configure.ac +++ b/gdb/testsuite/configure.ac @@ -102,5 +102,6 @@ GDB_AC_TRANSFORM(readelf, READELF_TRANSFORM_NAME) GDB_AC_TRANSFORM(as, GAS_TRANSFORM_NAME) GDB_AC_TRANSFORM(nm, NM_TRANSFORM_NAME) AC_CONFIG_FILES([lib/pdtrace], [chmod +x lib/pdtrace]) +AC_CONFIG_FILES([Makefile]) -AC_OUTPUT([Makefile]) +AC_OUTPUT |