config-ml.in: Suppress output from multi-do recipes
authorJonathan Wakely <jwakely@redhat.com>
Wed, 14 Oct 2020 15:15:50 +0000 (16:15 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Mon, 9 Nov 2020 14:28:37 +0000 (14:28 +0000)
The FIXME comments saying "Leave out until this is tested a bit more"
are from 1997. I think they've been sufficiently tested.

ChangeLog:

* config-ml.in (multi-do, multi-clean): Add @ to silence recipes.
Remove FIXME comments.

config-ml.in

index 5720d38d23f9a0b0a429efd870e6350b1fb83fbe..68854a4f16c2bfcd48a8d721d4c28f0a602148cf 100644 (file)
@@ -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; \
@@ -547,10 +545,8 @@ multi-do:
          done; \
        fi
 
-# FIXME: There should be an @-sign in front of the `if'.
-# Leave out until this is tested a bit more.
 multi-clean:
-       if [ -z "$(MULTIDIRS)" ]; then \
+       @if [ -z "$(MULTIDIRS)" ]; then \
          true; \
        else \
          lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \