1f0a9715d2
ARC port of GDB is not yet upstream so we need to use sources from Synopsys GitHub repo. Given Synopys' commitment to upstream ARC support in GDB in the nearest future it might be simpler to add a separate package for ARC GDB instead of patching generic GDB package. This way once ARC GDB stuff gets uptreamed we'll only need to remove that new "gdb-arc" package. Note 1 very minor change in generic gdb package was done - it now depends on !arc (while "gdb-arc" depends on "arc"). Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
11 lines
419 B
Diff
11 lines
419 B
Diff
--- a/gdb/gdbserver/configure
|
|
+++ b/gdb/gdbserver/configure
|
|
@@ -2468,7 +2468,7 @@ $as_echo "$as_me: error: \`$ac_var' was
|
|
ac_cache_corrupted=: ;;
|
|
,);;
|
|
*)
|
|
- if test "x$ac_old_val" != "x$ac_new_val"; then
|
|
+ if test "`echo x$ac_old_val`" != "`echo x$ac_new_val`"; then
|
|
# differences in whitespace do not lead to failure.
|
|
ac_old_val_w=`echo x $ac_old_val`
|
|
ac_new_val_w=`echo x $ac_new_val`
|