diff options
author | H.J. Lu <hjl@gnu.org> | 1998-01-17 20:04:38 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-17 13:04:38 -0700 |
commit | 520ab477c83f492780d5dcafbb34064f3e180443 (patch) | |
tree | ee6d3b1c4c10d6c2393f9515a7c254b8a64045b5 | |
parent | db8abea3770849b0c7737c2485ade5129793ad99 (diff) | |
download | gcc-520ab477c83f492780d5dcafbb34064f3e180443.zip gcc-520ab477c83f492780d5dcafbb34064f3e180443.tar.gz gcc-520ab477c83f492780d5dcafbb34064f3e180443.tar.bz2 |
configure.in: Check makefile fragments in the source directory.
* configure.in: Check makefile fragments in the source
directory.
From-SVN: r17385
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +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 diff --git a/configure.in b/configure.in index 25db03d..7b2682b 100644 --- a/configure.in +++ b/configure.in @@ -278,7 +278,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 ;; @@ -900,7 +900,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 ;; |