summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-01-17 20:04:38 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-01-17 20:04:38 +0000
commitfa6212f1f07f1a0bb2e1a05aedde0edd8d318192 (patch)
treeee6d3b1c4c10d6c2393f9515a7c254b8a64045b5 /configure.in
parentf9012b514191ba65d36edf3f5b26a9336dfab69f (diff)
downloadgcc-fa6212f1f07f1a0bb2e1a05aedde0edd8d318192.tar.gz
* configure.in: Check makefile fragments in the source
directory. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17385 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 25db03d904b..7b2682bd2c5 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
;;