* gas/hppa/unsorted/common.s: New test.
[deliverable/binutils-gdb.git] / configure.in
index 3ef709c1363f31cfb56648b2eaf0bcb4073e23ab..5ee69c3dedaf1c87f4ac977240bd15fa453341b2 100644 (file)
@@ -117,6 +117,7 @@ case "${host}" in
   *-*-solaris2*)          host_makefile_frag=config/mh-solaris ;;
   m68k-sun-*)            host_makefile_frag=config/mh-sun3 ;;
   *-sun-*)               host_makefile_frag=config/mh-sun ;;
+  *-hp-hpux[78]*)         host_makefile_frag=config/mh-hpux8 ;;
   *-hp-hpux*)             host_makefile_frag=config/mh-hpux ;;
   *-*-hiux*)              host_makefile_frag=config/mh-hpux ;;
   rs6000-*-lynxos*)      host_makefile_frag=config/mh-lynxrs6k ;;
@@ -166,14 +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 [ -n "${host_makefile_frag}" ] && [ -f ${srcdir}/${waugh} ]; then
-    cat ${srcdir}/${host_makefile_frag} > mh-frag
-    cat ${srcdir}/${waugh} >> mh-frag
-    host_makefile_frag=mh-frag
+  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
   fi
 fi
 
@@ -531,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
 
This page took 0.023248 seconds and 4 git commands to generate.