* configure.in: Check makefile fragments in the source
authorJeff Law <law@redhat.com>
Sun, 18 Jan 1998 04:05:34 +0000 (04:05 +0000)
committerJeff Law <law@redhat.com>
Sun, 18 Jan 1998 04:05:34 +0000 (04:05 +0000)
        directory.

ChangeLog
configure.in

index 7f89370ac43efda1e389ce7d6b5ed00816ce8842..993a8008e7731f457720c32bf42b0c5c73b541ea 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+Sat Jan 17 21:04:59 1998 H.J. Lu  (hjl@gnu.org)
+
+       * configure.in: Check makefile fragments in the source
+       directory.
+
+Fri Jan 16 00:41:37 1998  Alexandre Oliva <oliva@dcc.unicamp.br>
+
+       * configure.in: check whether host and target makefile
+       fragments exist before adding them to *_makefile_frag
+
 start-sanitize-vr4111
 Thu Jan 15 09:36:48 1998  Gavin Koch  <gavin@cygnus.com>
 
index 8a5664ae04e0dd6a085b619c571fd30f8f32cceb..4cae0e438c80220d36fd69e0a13320d84881a5bd 100644 (file)
@@ -284,7 +284,7 @@ if [ x${shared} = xyes ]; then
       host_makefile_frag="${host_makefile_frag} config/mh-elfalphapic"
       ;;
     *)
-      if test -f config/mh-${host_cpu}pic; then
+      if test -f ${srcdir}/config/mh-${host_cpu}pic; then
         host_makefile_frag="${host_makefile_frag} config/mh-${host_cpu}pic"
       fi
       ;;
@@ -958,7 +958,7 @@ if [ x${shared} = xyes ]; then
       target_makefile_frag="${target_makefile_frag} config/mt-elfalphapic"
       ;;
     *)
-      if test -f config/mt-${target_cpu}pic; then
+      if test -f ${srcdir}/config/mt-${target_cpu}pic; then
         target_makefile_frag="${target_makefile_frag} config/mt-${target_cpu}pic"
       fi
       ;;
This page took 0.029504 seconds and 4 git commands to generate.