diff options
author | Rob Savoye <rob@cygnus> | 1994-02-15 04:30:10 +0000 |
---|---|---|
committer | Rob Savoye <rob@cygnus> | 1994-02-15 04:30:10 +0000 |
commit | caa0901f0051ddcbfd7cc47f2428c9f0d6a5d7fa (patch) | |
tree | 0b1425b49b906859b019e0dd22d49de90869c922 /binutils/testsuite/configure.in | |
parent | 71ae6c3153fcc59b1922d5d1a4aafe40c9fa1a12 (diff) | |
download | gdb-caa0901f0051ddcbfd7cc47f2428c9f0d6a5d7fa.zip gdb-caa0901f0051ddcbfd7cc47f2428c9f0d6a5d7fa.tar.gz gdb-caa0901f0051ddcbfd7cc47f2428c9f0d6a5d7fa.tar.bz2 |
Swap order of config names to match so vxworks is before m68k.
Diffstat (limited to 'binutils/testsuite/configure.in')
-rw-r--r-- | binutils/testsuite/configure.in | 35 |
1 files changed, 9 insertions, 26 deletions
diff --git a/binutils/testsuite/configure.in b/binutils/testsuite/configure.in index a49a2e8..584ba17 100644 --- a/binutils/testsuite/configure.in +++ b/binutils/testsuite/configure.in @@ -12,34 +12,17 @@ configdirs="binutils.all" # per-target: - # everything defaults to unix for a target -target_abbrev=unix -target_makefile_frag=config/mt-unix - # this section is for all targets case "${target}" in -i386-*-aout) target_abbrev=aout ; - target_makefile_frag=config/mt-i386-aout ;; -m68*-abug-aout) target_abbrev=abug ; - target_makefile_frag=config/mt-m68k-abug-aout ;; -m68*-abug-coff) target_abbrev=abug ; - target_makefile_frag=config/mt-m68k-abug-coff ;; -m68*-*-abug) target_abbrev=abug ; - target_makefile_frag=config/mt-m68k-abug-aout ;; -m68k-*-coff) target_abbrev=coff ; - target_makefile_frag=config/mt-m68k-coff ;; -m68k-*-aout) target_abbrev=aout ; - target_makefile_frag=config/mt-m68k-aout ;; -i960-*-nindy) target_abbrev=nind ; - target_makefile_frag=config/mt-i960-nindy ;; -m68k-*-vxworks) target_abbrev=vx ; - target_makefile_frag=config/mt-m68k-vx ;; -i960-*-vxworks) target_abbrev=vx ; - target_makefile_frag=config/mt-i960-vx ;; -a29k-*-udi) target_abbrev=udi ; - target_makefile_frag=config/mt-a29k-udi ;; -a29k-isstip-*) target_abbrev=itip ; - target_makefile_frag=config/mt-a29k-isstip ;; + i386-*-aout) target_makefile_frag=config/mt-i386-aout ;; + *-*-lynx) target_makefile_frag=config/mt-lynx ;; + *-*-vxworks) target_makefile_frag=config/mt-vxworks ;; + m68k-*-*) target_makefile_frag=config/mt-m68k ;; + i960-*-nindy) target_makefile_frag=config/mt-i960-nindy ;; + a29k-*-udi) target_makefile_frag=config/mt-a29k-udi ;; + sparclite-*-*) target_makefile_frag=config/mt-slite ;; + sparc-*-aout) target_makefile_frag=config/mt-sparc-aout ;; + mips-*-ecoff) target_makefile_frag=config/mt-mips-ecoff ;; esac # post-target: |