diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2020-10-31 08:30:58 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2020-10-31 08:30:58 -0400 |
commit | 0e5b0dd0249bf568f748f207272583bd660e9c79 (patch) | |
tree | 9a9c3c3b8a6f0c2da302983ddba1fdcfd61c56a4 /gdb/testsuite | |
parent | 5593a99a95f8f86240c6d8583a52a3956c691dba (diff) | |
download | gdb-0e5b0dd0249bf568f748f207272583bd660e9c79.zip gdb-0e5b0dd0249bf568f748f207272583bd660e9c79.tar.gz gdb-0e5b0dd0249bf568f748f207272583bd660e9c79.tar.bz2 |
gdb/testsuite: modernize configure.ac
Run autoupdate, the only change is to split AC_INIT into AC_INIT and
AC_CONFIG_SRCDIR.
gdb/testsuite/ChangeLog:
* configure.ac: Split AC_INIT into AC_INIT and AC_CONFIG_SRCDIR.
* configure: Re-generate.
Change-Id: I6e40c0261bda4fe9144b896799ef460d23e22e09
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rwxr-xr-x | gdb/testsuite/configure | 1 | ||||
-rw-r--r-- | gdb/testsuite/configure.ac | 3 |
3 files changed, 8 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 3ed7d4f..9b8370a 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2020-10-31 Simon Marchi <simon.marchi@polymtl.ca> + + * configure.ac: Split AC_INIT into AC_INIT and AC_CONFIG_SRCDIR. + * configure: Re-generate. + 2020-10-30 Simon Marchi <simon.marchi@efficios.com> * gdb.arch/amd64-disp-step-avx.exp: Update displaced step debug diff --git a/gdb/testsuite/configure b/gdb/testsuite/configure index 0de6074..3b0d4ed 100755 --- a/gdb/testsuite/configure +++ b/gdb/testsuite/configure @@ -2008,6 +2008,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then diff --git a/gdb/testsuite/configure.ac b/gdb/testsuite/configure.ac index cc62c3f..c1dd130 100644 --- a/gdb/testsuite/configure.ac +++ b/gdb/testsuite/configure.ac @@ -16,7 +16,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -AC_INIT(gdb.base) +AC_INIT +AC_CONFIG_SRCDIR([gdb.base]) AC_CANONICAL_BUILD AC_CANONICAL_HOST |