aboutsummaryrefslogtreecommitdiff
path: root/sim/common
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@redhat.com>2001-01-12 18:51:28 +0000
committerFrank Ch. Eigler <fche@redhat.com>2001-01-12 18:51:28 +0000
commit9397fcbf1c7242c71304c1f19dd730b32887d000 (patch)
treec8ce4c37633f156f6e1495e091e3f6683261831c /sim/common
parentd0398d6ac6e557e0b32628c7acd307b7dd538ef1 (diff)
downloadfsf-binutils-gdb-9397fcbf1c7242c71304c1f19dd730b32887d000.zip
fsf-binutils-gdb-9397fcbf1c7242c71304c1f19dd730b32887d000.tar.gz
fsf-binutils-gdb-9397fcbf1c7242c71304c1f19dd730b32887d000.tar.bz2
* 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')
-rw-r--r--sim/common/ChangeLog5
-rw-r--r--sim/common/aclocal.m42
2 files changed, 6 insertions, 1 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog
index 1caff73..dd7eddc 100644
--- a/sim/common/ChangeLog
+++ b/sim/common/ChangeLog
@@ -1,3 +1,8 @@
+2001-01-12 Chris Demetriou <cgd@sibyte.com>
+
+ * aclocal.m4 (SIM_AC_OPTION_SCACHE): Properly
+ handle the case where a numeric value is supplied.
+
2001-01-06 Ben Elliston <bje@redhat.com>
* cgen.sh: Allow extrafiles to include the semantics files when
diff --git a/sim/common/aclocal.m4 b/sim/common/aclocal.m4
index 30934b2..a1c797a 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