[PATCH] configure: Suppress output from multi-do recipes

Jonathan Wakely jwakely@redhat.com
Wed Oct 14 16:29:25 GMT 2020


The FIXME comment saying "Leave out until this is tested a bit more" is
from 1997. I think it's been sufficiently tested.

ChangeLog:

	* config-ml.in (multi-do): Add @ to silence recipe. Remove FIXME
	comment.

OK for trunk?

This removes 44 lines of irrelevant noise from various build targets,
such as the 'check' target that runs the libstdc++ testsuite.

-------------- next part --------------
commit bf8497941453a68e7d1e79001ef7309e5adbad8b
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Wed Oct 14 16:15:50 2020

    configure: Suppress output from multi-do recipes
    
    The FIXME comment saying "Leave out until this is tested a bit more" is
    from 1997. I think it's been sufficiently tested.
    
    ChangeLog:
    
            * config-ml.in (multi-do): Add @ to silence recipe. Remove FIXME
            comment.

diff --git a/config-ml.in b/config-ml.in
index 5720d38d23f..e799cd6a919 100644
--- a/config-ml.in
+++ b/config-ml.in
@@ -499,10 +499,8 @@ cat > Multi.tem <<\EOF
 
 PWD_COMMAND=$${PWDCMD-pwd}
 
-# FIXME: There should be an @-sign in front of the `if'.
-# Leave out until this is tested a bit more.
 multi-do:
-	if [ -z "$(MULTIDIRS)" ]; then \
+	@if [ -z "$(MULTIDIRS)" ]; then \
 	  true; \
 	else \
 	  rootpre=`${PWD_COMMAND}`/; export rootpre; \


More information about the Gcc-patches mailing list