diff options
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | Makefile.in | 10 |
2 files changed, 12 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2002-12-13 Jason Merrill <jason@redhat.com> + + * Makefile.in (check-gcc-c++): Renamed from check-c++. Don't run + library tests. + (check-c++): Just depend on it and check-target-libstdc++-v3. + 2002-12-12 Alexandre Oliva <aoliva@redhat.com> * Makefile.in (configure-target-rda): Depend on ALL_GCC_C. diff --git a/Makefile.in b/Makefile.in index c938d63..0c5606e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1586,17 +1586,19 @@ check-gcc: true; \ fi -.PHONY: check-c++ -check-c++: +.PHONY: check-gcc-c++ +check-gcc-c++: @if [ -f ./gcc/Makefile ] ; then \ r=`${PWD}`; export r; \ s=`cd $(srcdir); ${PWD}`; export s; \ $(SET_LIB_PATH) \ (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check-c++); \ - $(MAKE) check-target-libstdc++-v3; \ else \ true; \ - fi + fi + +.PHONY: check-c++ +check-c++: check-target-libstdc++-v3 check-gcc-c++ .PHONY: install-gcc install-gcc: |
