This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[libstdc++ trunk/3.2] check-abi run silently


It's a lot easier to do automated comparisons of the output of "make
check-abi" when the command itself isn't included in the output (since
the pathnames can vary).

Tested, verified, trunk and branch.


2002-10-01  Phil Edwards  <pme@gcc.gnu.org>

	* Makefile.am (check-abi):  Add @ to rule.
	* Makefile.in:  Regenerated.


Index: Makefile.am
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/Makefile.am,v
retrieving revision 1.35
diff -u -3 -p -r1.35 Makefile.am
--- Makefile.am	23 Sep 2002 03:52:54 -0000	1.35
+++ Makefile.am	2 Oct 2002 01:02:05 -0000
@@ -50,7 +50,7 @@ check-script-install: $(top_builddir)/mk
 # 'check-abi' to test for changes against that file.
 baseline_file = @baseline_file@
 check-abi: $(top_builddir)/testsuite/abi_check
-	-(cd testsuite; \
+	-@(cd testsuite; \
 	  ${top_srcdir}/config/abi/extract_symvers \
 	     ../src/.libs/libstdc++.so \
 	     ./current_symbols.txt && \


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]