Commit 2c443622 by Jeff Law

configure.in (configdirs): Include testsuite only if ${srcdir}/../gcc exists.

�
        * configure.in (configdirs): Include testsuite only if
        ${srcdir}/../gcc exists.
        * tests/configure.in (check): Set to ${CHECK} if
        ${srcdir}/../../gcc doesn't exists.

From-SVN: r17334
parent c43143f6
...@@ -2,7 +2,11 @@ ...@@ -2,7 +2,11 @@
# necessary for a configure script to process the program in # necessary for a configure script to process the program in
# this directory. For more information, look at ../configure. # this directory. For more information, look at ../configure.
configdirs="tests testsuite" if [ -d ${srcdir}/../gcc ] ; then
configdirs="tests testsuite"
else
configdirs="tests"
fi
srctrigger=sinst.cc srctrigger=sinst.cc
srcname="ANSI C++ library" srcname="ANSI C++ library"
package_makefile_frag=Make.pack package_makefile_frag=Make.pack
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment