diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-12-30 23:47:35 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-12-30 23:48:17 -0500 |
commit | 8e26d677a240d3b495b7c565006d75646a15ed53 (patch) | |
tree | c375f4be51b628330f1692c1cca37430613bcc60 /sim/m68hc11/configure | |
parent | eca4255a1a6c3603e05c4f3ca9c0849f529657c3 (diff) | |
download | gdb-8e26d677a240d3b495b7c565006d75646a15ed53.zip gdb-8e26d677a240d3b495b7c565006d75646a15ed53.tar.gz gdb-8e26d677a240d3b495b7c565006d75646a15ed53.tar.bz2 |
sim: m68hc11: fix default endian
The previous commit here set the default to little instead of big.
A typo lost when reviewing the different targets in parallel.
Diffstat (limited to 'sim/m68hc11/configure')
-rwxr-xr-x | sim/m68hc11/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/m68hc11/configure b/sim/m68hc11/configure index d7926d6..3a277d1 100755 --- a/sim/m68hc11/configure +++ b/sim/m68hc11/configure @@ -12955,7 +12955,7 @@ fi fi -wire_endian="LITTLE_ENDIAN" +wire_endian="BIG_ENDIAN" default_endian="" # Check whether --enable-sim-endian was given. if test "${enable_sim_endian+set}" = set; then : |