From 9397fcbf1c7242c71304c1f19dd730b32887d000 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Fri, 12 Jan 2001 18:51:28 +0000 Subject: [PATCH] * configury fix [common/ChangeLog] 2001-01-12 Chris Demetriou * 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 * configure: Regenerated with sim_scache fix. --- sim/common/ChangeLog | 5 +++++ sim/common/aclocal.m4 | 2 +- sim/fr30/ChangeLog | 4 ++++ sim/fr30/configure | 2 +- sim/i960/ChangeLog | 4 ++++ sim/i960/configure | 2 +- sim/m32r/ChangeLog | 4 ++++ sim/m32r/configure | 2 +- 8 files changed, 21 insertions(+), 4 deletions(-) diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 1caff734b32..dd7eddc8689 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +2001-01-12 Chris Demetriou + + * aclocal.m4 (SIM_AC_OPTION_SCACHE): Properly + handle the case where a numeric value is supplied. + 2001-01-06 Ben Elliston * cgen.sh: Allow extrafiles to include the semantics files when 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 diff --git a/sim/fr30/ChangeLog b/sim/fr30/ChangeLog index 27c8b8886f0..bc3a8c94efc 100644 --- a/sim/fr30/ChangeLog +++ b/sim/fr30/ChangeLog @@ -1,3 +1,7 @@ +2001-01-12 Frank Ch. Eigler + + * configure: Regenerated with sim_scache fix. + 2000-11-18 Greg McGary * Makefile.in: remove `@true' commands for rules that have diff --git a/sim/fr30/configure b/sim/fr30/configure index 969621708df..2c537d36e6b 100644 --- a/sim/fr30/configure +++ b/sim/fr30/configure @@ -3724,7 +3724,7 @@ if test "${enable_sim_scache+set}" = set; then 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}";; *) { echo "configure: error: "Bad value $enableval passed to --enable-sim-scache"" 1>&2; exit 1; }; sim_scache="";; esac diff --git a/sim/i960/ChangeLog b/sim/i960/ChangeLog index d5050ae83a2..ee3ef5768b7 100644 --- a/sim/i960/ChangeLog +++ b/sim/i960/ChangeLog @@ -1,3 +1,7 @@ +2001-01-12 Frank Ch. Eigler + + * configure: Regenerated with sim_scache fix. + 2000-11-18 Greg McGary * Makefile.in: remove `@true' commands for rules that have diff --git a/sim/i960/configure b/sim/i960/configure index e5c144fb055..d848325255f 100755 --- a/sim/i960/configure +++ b/sim/i960/configure @@ -3724,7 +3724,7 @@ if test "${enable_sim_scache+set}" = set; then 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}";; *) { echo "configure: error: "Bad value $enableval passed to --enable-sim-scache"" 1>&2; exit 1; }; sim_scache="";; esac diff --git a/sim/m32r/ChangeLog b/sim/m32r/ChangeLog index cec7d3c32b8..dca940ef04a 100644 --- a/sim/m32r/ChangeLog +++ b/sim/m32r/ChangeLog @@ -1,3 +1,7 @@ +2001-01-12 Frank Ch. Eigler + + * configure: Regenerated with sim_scache fix. + 2000-11-18 Greg McGary * Makefile.in: remove `@true' commands for rules that have diff --git a/sim/m32r/configure b/sim/m32r/configure index 1ad5574bd9d..4a55bc182a8 100755 --- a/sim/m32r/configure +++ b/sim/m32r/configure @@ -3726,7 +3726,7 @@ if test "${enable_sim_scache+set}" = set; then 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}";; *) { echo "configure: error: "Bad value $enableval passed to --enable-sim-scache"" 1>&2; exit 1; }; sim_scache="";; esac -- 2.30.2