From: J.T. Conklin Date: Sat, 3 Sep 1994 00:45:30 +0000 (+0000) Subject: * configure.in: No longer looks for nm, tm, and xm headers in X-Git-Tag: gdb-4_18~13656 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b40fa61278bbac39de3f62ff6e1adc005d810249;p=platform%2Fupstream%2Fbinutils.git * configure.in: No longer looks for nm, tm, and xm headers in config/
; they are always in config//
. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3c815cd..42c8b25 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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/
; they are always in config//
. + Fri Sep 2 16:40:03 1994 Stan Shebs (shebs@andros.cygnus.com) * objfiles.c (allocate_objfile): Add the newly-created objfile to diff --git a/gdb/configure.in b/gdb/configure.in index 31e9adf..0b3d9f0 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -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.