Message ID | alpine.LFD.2.21.2001291829220.14118@redsun52.ssa.fujisawa.hgst.com |
---|---|
State | Committed |
Headers | show |
"Maciej W. Rozycki" <macro@wdc.com> writes: > Well, this is obvious (and the terminal wrap hid the trailing tab making > it pretend to be a newline). Fixed thus, and committed. > > Maciej Thanks! -- Pedro Franco de Carvalho
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 3b88a9b901e..9bc965a36b3 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,7 @@ +2020-01-29 Maciej W. Rozycki <macro@wdc.com> + + * configure.srv <i[34567]86-*-mingw*>: Fix whitespace damage. + 2020-01-29 Pedro Franco de Carvalho <pedromfc@linux.ibm.com> * configure.srv (powerpc*-*-linux*): Use srv_tgtobj in second diff --git a/gdb/gdbserver/configure.srv b/gdb/gdbserver/configure.srv index f0ab14f7c33..dba0733f1d7 100644 --- a/gdb/gdbserver/configure.srv +++ b/gdb/gdbserver/configure.srv @@ -124,7 +124,8 @@ case "${target}" in srv_mingwce=yes ;; i[34567]86-*-mingw*) srv_regobj="" - srv_tgtobj="x86-low.o nat/x86-dregs.o win32-low.o" srv_tgtobj="${srv_tgtobj} win32-i386-low.o" + srv_tgtobj="x86-low.o nat/x86-dregs.o win32-low.o" + srv_tgtobj="${srv_tgtobj} win32-i386-low.o" srv_tgtobj="${srv_tgtobj} arch/i386.o" srv_mingw=yes ;;