diff options
author | Frank Ch. Eigler <fche@redhat.com> | 2001-01-12 18:51:28 +0000 |
---|---|---|
committer | Frank Ch. Eigler <fche@redhat.com> | 2001-01-12 18:51:28 +0000 |
commit | f44bb37cdcf5c5e0f9124aa20bb7c2f2ad336ab5 (patch) | |
tree | 38fcd3ee6a7dd34e8f48170ab8d4b91ee39c15c3 /sim/common/aclocal.m4 | |
parent | 2d626dbcd3a16ae3d137b1d1202b1b6f9f0406bb (diff) | |
download | gdb-f44bb37cdcf5c5e0f9124aa20bb7c2f2ad336ab5.tar.gz |
* configury fix
[common/ChangeLog]
2001-01-12 Chris Demetriou <cgd@sibyte.com>
* aclocal.m4 (SIM_AC_OPTION_SCACHE): Properly
handle the case where a numeric value is supplied.
[eg. m32r/ChangeLog]
2001-01-12 Frank Ch. Eigler <fche@redhat.com>
* configure: Regenerated with sim_scache fix.
Diffstat (limited to 'sim/common/aclocal.m4')
-rw-r--r-- | sim/common/aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/aclocal.m4 b/sim/common/aclocal.m4 index 30934b24830..a1c797af274 100644 --- a/sim/common/aclocal.m4 +++ b/sim/common/aclocal.m4 @@ -529,7 +529,7 @@ AC_ARG_ENABLE(sim-scache, [case "${enableval}" in yes) sim_scache="-DWITH_SCACHE=${default_sim_scache}";; no) sim_scache="-DWITH_SCACHE=0" ;; - [[0-9]]*) sim_cache=${enableval};; + [[0-9]]*) sim_scache="-DWITH_SCACHE=${enableval}";; *) AC_MSG_ERROR("Bad value $enableval passed to --enable-sim-scache"); sim_scache="";; esac |