diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-02-28 22:34:21 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-02-28 22:34:21 +0000 |
commit | f7ce03e55248931958bdc2559e430daaae906adb (patch) | |
tree | 66ce3c596062f0c015c4391a490f409cdfe311e2 /sim/w65 | |
parent | 0877841d73b4d55c58353fd50326acc9693b4af9 (diff) | |
download | gdb-f7ce03e55248931958bdc2559e430daaae906adb.zip gdb-f7ce03e55248931958bdc2559e430daaae906adb.tar.gz gdb-f7ce03e55248931958bdc2559e430daaae906adb.tar.bz2 |
fix configury
Diffstat (limited to 'sim/w65')
-rwxr-xr-x | sim/w65/.Sanitize | 1 | ||||
-rw-r--r-- | sim/w65/ChangeLog | 6 | ||||
-rwxr-xr-x | sim/w65/configure.in | 7 |
3 files changed, 9 insertions, 5 deletions
diff --git a/sim/w65/.Sanitize b/sim/w65/.Sanitize index 9c94f41..2f76a57 100755 --- a/sim/w65/.Sanitize +++ b/sim/w65/.Sanitize @@ -25,6 +25,7 @@ Do-first: Things-to-keep: +ChangeLog Makefile.in configure.in interp.c diff --git a/sim/w65/ChangeLog b/sim/w65/ChangeLog new file mode 100644 index 0000000..d077254 --- /dev/null +++ b/sim/w65/ChangeLog @@ -0,0 +1,6 @@ +Tue Feb 28 17:31:36 1995 Ian Lance Taylor <ian@cygnus.com> + + * configure.in: Use ../../bfd/hosts/std-host.h if specific + host unavailable. + + * Started ChangeLog. diff --git a/sim/w65/configure.in b/sim/w65/configure.in index 9ae02275..197a718 100755 --- a/sim/w65/configure.in +++ b/sim/w65/configure.in @@ -16,11 +16,8 @@ files="../../bfd/hosts/${my_host}.h" links="sysdep.h" if [ ! -f ${srcdir}/${files} ] ; then - if [ -n "${my_host}" ] ; then - echo '***' No file ${srcdir}/${files} 1>&2 - fi - echo '***' ${srcname} does not support host ${host} 1>&2 - exit 1 + files=../bfd/hosts/std-host.h + echo "[${srcname} has no specific support for host ${host} -- using std-host]" fi host_makefile_frag= |