diff options
author | Jeff Law <law@redhat.com> | 1998-01-18 04:05:34 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1998-01-18 04:05:34 +0000 |
commit | 5a67071d925fd8c4cabd3dd461f267c6113fd8c8 (patch) | |
tree | 68f0e96c154dbb6cac9391e0142ea015cf314aa2 /configure.in | |
parent | 0b988d39cf04f740f5b21d875209fe91ab63710e (diff) | |
download | gdb-5a67071d925fd8c4cabd3dd461f267c6113fd8c8.zip gdb-5a67071d925fd8c4cabd3dd461f267c6113fd8c8.tar.gz gdb-5a67071d925fd8c4cabd3dd461f267c6113fd8c8.tar.bz2 |
* configure.in: Check makefile fragments in the source
directory.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 8a5664a..4cae0e4 100644 --- a/configure.in +++ b/configure.in @@ -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 ;; |