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 | 9397fcbf1c7242c71304c1f19dd730b32887d000 (patch) | |
tree | c8ce4c37633f156f6e1495e091e3f6683261831c /sim/i960 | |
parent | d0398d6ac6e557e0b32628c7acd307b7dd538ef1 (diff) | |
download | gdb-9397fcbf1c7242c71304c1f19dd730b32887d000.zip gdb-9397fcbf1c7242c71304c1f19dd730b32887d000.tar.gz 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/i960')
-rw-r--r-- | sim/i960/ChangeLog | 4 | ||||
-rwxr-xr-x | sim/i960/configure | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/sim/i960/ChangeLog b/sim/i960/ChangeLog index d5050ae..ee3ef57 100644 --- a/sim/i960/ChangeLog +++ b/sim/i960/ChangeLog @@ -1,3 +1,7 @@ +2001-01-12 Frank Ch. Eigler <fche@redhat.com> + + * configure: Regenerated with sim_scache fix. + 2000-11-18 Greg McGary <greg@mcgary.org> * Makefile.in: remove `@true' commands for rules that have diff --git a/sim/i960/configure b/sim/i960/configure index e5c144f..d848325 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 |