diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-23 22:19:41 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-24 00:13:57 -0400 |
commit | 30452bbe7e68581cdb0cd5004e6c4d4d5c9536e8 (patch) | |
tree | a52d39c1a9b5466475a60418a6ca495a74307cf2 /sim/frv | |
parent | 64dd13dfc267b1d13f42519f220e89a4386591fd (diff) | |
download | gdb-30452bbe7e68581cdb0cd5004e6c4d4d5c9536e8.zip gdb-30452bbe7e68581cdb0cd5004e6c4d4d5c9536e8.tar.gz gdb-30452bbe7e68581cdb0cd5004e6c4d4d5c9536e8.tar.bz2 |
sim: fix sim-hardware configure option
The current default handling for the --enable-sim-hardware option ends up
forcing the value to whatever is set as the first argument when calling
the macro (by virtue of how autoconf works). Relocate the setup code to
the 4th parameter of the AC_ARG_ENABLE macro to fix it.
This was caused by the simplification work in 1517bd274290e06af498ef7e49.
Reported-by: Hans-Peter Nilsson <hans-peter.nilsson@axis.com>
Diffstat (limited to 'sim/frv')
-rw-r--r-- | sim/frv/ChangeLog | 4 | ||||
-rwxr-xr-x | sim/frv/configure | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sim/frv/ChangeLog b/sim/frv/ChangeLog index d7f23f1..2e4f8b6 100644 --- a/sim/frv/ChangeLog +++ b/sim/frv/ChangeLog @@ -1,3 +1,7 @@ +2015-03-24 Mike Frysinger <vapier@gentoo.org> + + * configure: Regenerate. + 2015-03-23 Mike Frysinger <vapier@gentoo.org> * configure: Regenerate. diff --git a/sim/frv/configure b/sim/frv/configure index 06f015f..39a1567 100755 --- a/sim/frv/configure +++ b/sim/frv/configure @@ -13413,12 +13413,6 @@ fi -if test x"no" != x"no"; then - enable_sim_hardware=yes -else - enable_sim_hardware=no -fi - if test """"; then hardware="""" else @@ -13433,6 +13427,8 @@ sim_hw_objs="\$(SIM_COMMON_HW_OBJS) `echo $sim_hw | sed -e 's/\([^ ][^ ]*\)/dv-\ # Check whether --enable-sim-hardware was given. if test "${enable_sim_hardware+set}" = set; then : enableval=$enable_sim_hardware; +else + enable_sim_hardware="no" fi case ${enable_sim_hardware} in |