diff options
author | Stan Shebs <shebs@codesourcery.com> | 1995-08-16 19:03:10 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1995-08-16 19:03:10 +0000 |
commit | 46ce3de0a9d6e00dec9164f03092ce9793bc5055 (patch) | |
tree | 67e541266fcedcab24edbc445df2d3ea1909e9a8 /gdb/testsuite/configure.in | |
parent | 1d169acc61fbc92325b9042e122908ce7fa0ab18 (diff) | |
download | gdb-46ce3de0a9d6e00dec9164f03092ce9793bc5055.zip gdb-46ce3de0a9d6e00dec9164f03092ce9793bc5055.tar.gz gdb-46ce3de0a9d6e00dec9164f03092ce9793bc5055.tar.bz2 |
* configure.in: Only configure gdb.chill for particular targets.
Diffstat (limited to 'gdb/testsuite/configure.in')
-rw-r--r-- | gdb/testsuite/configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/testsuite/configure.in b/gdb/testsuite/configure.in index 61ec598..2ebb13b 100644 --- a/gdb/testsuite/configure.in +++ b/gdb/testsuite/configure.in @@ -50,10 +50,10 @@ case "${target}" in ;; esac -# Chill currently doesn't link cross targets, so only config and test natives -if [ "${host}" = "${target}" ] ; then - configdirs="${configdirs} gdb.chill" -fi +# Only test Chill debugging for particular targets. +case "${target}" in + sparc-*-sunos4*) configdirs="${configdirs} gdb.chill" ;; +esac # link in the lib directory if needed #if [ ! -d lib ] ; then |