aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>1995-03-17 01:20:00 +0000
committerJason Merrill <jason@redhat.com>1995-03-17 01:20:00 +0000
commitc9e556657f9d3361b01f2e08cfe84db682f9a287 (patch)
tree977d99f99dc10532d84564fb88e8c9fcf92041b9
parent5cba5d26087c3d74be0df8ffad6cbf7c4b8c1add (diff)
downloadgdb-c9e556657f9d3361b01f2e08cfe84db682f9a287.zip
gdb-c9e556657f9d3361b01f2e08cfe84db682f9a287.tar.gz
gdb-c9e556657f9d3361b01f2e08cfe84db682f9a287.tar.bz2
Duh. Really, duh.
-rw-r--r--configure.in16
1 files changed, 8 insertions, 8 deletions
diff --git a/configure.in b/configure.in
index 459d51a..5ee69c3 100644
--- a/configure.in
+++ b/configure.in
@@ -167,18 +167,18 @@ fi
if [ x${enable_shared} = xyes ]; then
waugh=
case "${host}" in
- hppa*-*-*) waugh=config/mh-papic ;;
- i[345]86-*-*) waugh=config/mh-x86pic ;;
- *-*-*) waugh=config/mh-${host_cpu}pic ;;
+ hppa*) waugh=config/mh-papic ;;
+ i[345]86-*) waugh=config/mh-x86pic ;;
+ *) waugh=config/mh-${host_cpu}pic ;;
esac
if [ -f ${srcdir}/${waugh} ]; then
if [ -n "${host_makefile_frag}" ] ; then
cat ${srcdir}/${host_makefile_frag} > mh-frag
cat ${srcdir}/${waugh} >> mh-frag
host_makefile_frag=mh-frag
+ else
+ host_makefile_frag=${waugh}
fi
- else
- host_makefile_frag=${waugh}
fi
fi
@@ -536,9 +536,9 @@ fi
if [ x${enable_shared} = xyes ]; then
case "${target}" in
- hppa*-*-*) target_makefile_frag=config/mt-papic ;;
- i[345]86-*-*) target_makefile_frag=config/mt-x86pic ;;
- *-*-*) target_makefile_frag=config/mt-${target_cpu}pic ;;
+ hppa*) target_makefile_frag=config/mt-papic ;;
+ i[345]86-*) target_makefile_frag=config/mt-x86pic ;;
+ *) target_makefile_frag=config/mt-${target_cpu}pic ;;
esac
fi