config-ml.in: Suppress output from multi-do recipes
authorJonathan Wakely <jwakely@redhat.com>
Mon, 7 Aug 2023 11:07:27 +0000 (13:07 +0200)
committerAlan Modra <amodra@gmail.com>
Sat, 12 Aug 2023 00:54:26 +0000 (10:24 +0930)
The FIXME comments saying "Leave out until this is tested a bit more"
are from 1997. I think they've been sufficiently tested.

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

config-ml.in

index 47f153350e47e4bd9c7d5615894793c1f065f4ef..9177fe63fbbd3a20049992525a4fb43bd5431ca6 100644 (file)
@@ -486,10 +486,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; \
@@ -533,10 +531,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,'`; \