diff options
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 6 | ||||
-rwxr-xr-x | gdb/gdbserver/configure | 4 | ||||
-rw-r--r-- | gdb/gdbserver/configure.ac | 4 |
3 files changed, 10 insertions, 4 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 3d799c1..30df0bc 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,5 +1,11 @@ 2016-02-09 Simon Marchi <simon.marchi@ericsson.com> + * configure.ac: Use AC_CONFIG_FILES instead of passing arguments + to AC_OUTPUT. + * configure: Regenerate. + +2016-02-09 Simon Marchi <simon.marchi@ericsson.com> + * linux-aarch64-low.c (aarch64_linux_siginfo_fixup): Change void * to gdb_byte *. * linux-low.c (siginfo_fixup): Likewise. diff --git a/gdb/gdbserver/configure b/gdb/gdbserver/configure index 4a6f26b..bb01922 100755 --- a/gdb/gdbserver/configure +++ b/gdb/gdbserver/configure @@ -7611,7 +7611,6 @@ fi ac_config_files="$ac_config_files Makefile" -ac_config_commands="$ac_config_commands default" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure @@ -8312,7 +8311,6 @@ do "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.in" ;; "depdir") CONFIG_COMMANDS="$CONFIG_COMMANDS depdir" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "default") CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac @@ -8858,7 +8856,7 @@ $as_echo "$as_me: executing $ac_file commands" >&6;} case $ac_file$ac_mode in "depdir":C) $SHELL $ac_aux_dir/mkinstalldirs $DEPDIR ;; - "default":C) case x$CONFIG_HEADERS in + "Makefile":F) case x$CONFIG_HEADERS in xconfig.h:config.in) echo > stamp-h ;; esac diff --git a/gdb/gdbserver/configure.ac b/gdb/gdbserver/configure.ac index f15ee1f..627c590 100644 --- a/gdb/gdbserver/configure.ac +++ b/gdb/gdbserver/configure.ac @@ -473,9 +473,11 @@ if test x"$STDINT_H" != x; then fi AC_SUBST(GNULIB_STDINT_H) -AC_OUTPUT(Makefile, +AC_CONFIG_FILES([Makefile], [case x$CONFIG_HEADERS in xconfig.h:config.in) echo > stamp-h ;; esac ]) + +AC_OUTPUT |