diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-08-26 18:28:26 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-08-26 18:28:26 +0000 |
commit | 4dc2adbb3c326974e917384ba68d18a26bea2273 (patch) | |
tree | 3d1ec5650ddc47c0d1769882981d14b707b194ce /libio | |
parent | eae9063cfc6e727f3979b6edda42054a3788dacd (diff) | |
download | gcc-4dc2adbb3c326974e917384ba68d18a26bea2273.tar.gz |
* testsuite/Makefile.in (check): Don't depend on site.exp.
(just-check): Depend on site.exp.
Fixes problems with SMP "make check".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14945 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libio')
-rw-r--r-- | libio/ChangeLog | 5 | ||||
-rw-r--r-- | libio/testsuite/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libio/ChangeLog b/libio/ChangeLog index de8f618cabf..5926479c8a2 100644 --- a/libio/ChangeLog +++ b/libio/ChangeLog @@ -1,3 +1,8 @@ +Tue Aug 26 12:24:01 1997 H.J. Lu (hjl@gnu.ai.mit.edu) + + * testsuite/Makefile.in (check): Don't depend on site.exp. + (just-check): Depend on site.exp. + Wed Aug 20 02:01:34 1997 Jason Merrill <jason@yorick.cygnus.com> * iostream.h: Add copy assignment ops for _IO_?stream_withassign. diff --git a/libio/testsuite/Makefile.in b/libio/testsuite/Makefile.in index 3b88456da7b..75465243d4a 100644 --- a/libio/testsuite/Makefile.in +++ b/libio/testsuite/Makefile.in @@ -56,7 +56,7 @@ clean-info: .PHONY: install-info install-info: -check: site.exp all just-check +check: all just-check site.exp: ./config.status Makefile @echo "Making a new config file..." @@ -79,7 +79,7 @@ site.exp: ./config.status Makefile -e '1,/^## All variables above are.*##/ d' >> site.exp -@rm -f ./tmp? -just-check: +just-check: site.exp rootme=`pwd`; export rootme; \ srcdir=${srcdir} ; export srcdir ; \ EXPECT=${EXPECT} ; export EXPECT ; \ |