summaryrefslogtreecommitdiff
path: root/libio/tests
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-01-27 09:34:31 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-01-27 09:34:31 +0000
commitd1ade02377a9e1941de778aa55368824c61b1578 (patch)
tree12b3d8897ca463ff7a38c72e300f22b6049647fd /libio/tests
parentfbb050acae39816aa7fc07f49772c851d8a681a2 (diff)
downloadgcc-d1ade02377a9e1941de778aa55368824c61b1578.tar.gz
* configure.in (topsrcdir): New.
(CHECK_SUBDIRS, configdirs): Check ${topsrcdir}/gcc instead. (config-ml.in): Use ${topsrcdir}/config-ml.in. * tests/configure.in (topsrcdir): New. (CHECK): Check ${topsrcdir}/gcc instead. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17506 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libio/tests')
-rw-r--r--libio/tests/configure.in13
1 files changed, 12 insertions, 1 deletions
diff --git a/libio/tests/configure.in b/libio/tests/configure.in
index 2efeaf52565..1a8ad31ae92 100644
--- a/libio/tests/configure.in
+++ b/libio/tests/configure.in
@@ -17,7 +17,18 @@ XCINCLUDES='-I. -I.. -I$(srcdir) -I$(srcdir)/..'
XCXXINCLUDES='-I. -I.. -I$(srcdir) -I$(srcdir)/..'
MOSTLYCLEAN='*.o core $(JUNK_TO_CLEAN)'
(. ${srcdir}/../config.shared) >${package_makefile_frag}
-if [ ! -d ${srcdir}/../../gcc ] ; then
+
+if [ "${srcdir}" = "." ] ; then
+ if [ "${with_target_subdir}" != "." ] ; then
+ topsrcdir=${with_multisrctop}../../..
+ else
+ topsrcdir=${with_multisrctop}../..
+ fi
+else
+ topsrcdir=${srcdir}/../..
+fi
+
+if [ ! -d ${topsrcdir}/gcc ] ; then
echo "CHECK = check-iostream check-iostdio" >>${package_makefile_frag}
fi