* configure.in: No longer looks for nm, tm, and xm headers in
authorJ.T. Conklin <jtc@acorntoolworks.com>
Sat, 3 Sep 1994 00:45:30 +0000 (00:45 +0000)
committerJ.T. Conklin <jtc@acorntoolworks.com>
Sat, 3 Sep 1994 00:45:30 +0000 (00:45 +0000)
  config/<header>; they are always in config/<cpu>/<header>.

gdb/ChangeLog
gdb/configure.in

index 3c815cd..42c8b25 100644 (file)
@@ -1,3 +1,8 @@
+Fri Sep  2 17:35:55 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)
+
+       * configure.in: No longer looks for nm, tm, and xm headers in
+         config/<header>; they are always in config/<cpu>/<header>.
+
 Fri Sep  2 16:40:03 1994  Stan Shebs  (shebs@andros.cygnus.com)
 
        * objfiles.c (allocate_objfile): Add the newly-created objfile to
index 31e9adf..0b3d9f0 100644 (file)
@@ -49,7 +49,7 @@ i[345]86-sequent-sysv4*) gdb_host=ptx4 ;;
 i[345]86-sequent-sysv*)        gdb_host=ptx ;;
 i[345]86-*-aix*)       gdb_host=i386aix ;;
 i[345]86-*-bsd*)       gdb_host=i386bsd ;;
-i[345]86-*-netbsd*)    gdb_host=i386bsd ;;
+i[345]86-*-netbsd*)    gdb_host=nbsd ;;
 i[345]86-*-go32*)      gdb_host=go32 ;;
 i[345]86-*-linux*)     gdb_host=linux ;;
 i[345]86-*-lynxos*)    gdb_host=i386lynx ;;
@@ -211,7 +211,7 @@ i[345]86-*-coff*)   gdb_target=i386v ;;
 i[345]86-*-elf*)       gdb_target=i386v ;;
 i[345]86-*-aix*)       gdb_target=i386aix ;;
 i[345]86-*-bsd*)       gdb_target=i386bsd ;;
-i[345]86-*-netbsd*)    gdb_target=i386bsd ;;
+i[345]86-*-netbsd*)    gdb_target=nbsd ;;
 i[345]86-*-os9k)       gdb_target=i386os9k ;;
 i[345]86-*-go32*)      gdb_target=i386aout ;;
 i[345]86-*-lynxos*)    gdb_target=i386lynx
@@ -370,29 +370,17 @@ files=
 links=
 rm -f xm.h
 if [ "${hostfile}" != "" ]; then
-       if [ -f ${srcdir}/config/${hostfile} ]; then
-               files="${files} config/${hostfile}"
-       else
-               files="${files} config/${gdb_host_cpu}/${hostfile}"
-       fi
+       files="${files} config/${gdb_host_cpu}/${hostfile}"
        links="${links} xm.h"
 fi
 rm -f tm.h
 if [ "${targetfile}" != "" ]; then
-       if [ -f ${srcdir}/config/${targetfile} ]; then
-               files="${files} config/${targetfile}"
-       else
-               files="${files} config/${gdb_target_cpu}/${targetfile}"
-       fi
+       files="${files} config/${gdb_target_cpu}/${targetfile}"
        links="${links} tm.h"
 fi
 rm -f nm.h
 if [ "${nativefile}" != "" ]; then
-       if [ -f ${srcdir}/config/${nativefile} ]; then
-               files="${files} config/${nativefile}"
-       else
-               files="${files} config/${gdb_host_cpu}/${nativefile}"
-       fi
+       files="${files} config/${gdb_host_cpu}/${nativefile}"
        links="${links} nm.h"
 # temporary scaffolding until all hosts have the host/target/native
 # split in place.