Remove the .SILENT bits again after feedback from bluhm
authorkn <kn@openbsd.org>
Wed, 7 Sep 2022 10:07:39 +0000 (10:07 +0000)
committerkn <kn@openbsd.org>
Wed, 7 Sep 2022 10:07:39 +0000 (10:07 +0000)
regress/usr.sbin/installboot/Makefile

index 5617bcc..8eeab25 100644 (file)
@@ -1,12 +1,9 @@
-#      $OpenBSD: Makefile,v 1.24 2022/09/06 20:54:37 kn Exp $
+#      $OpenBSD: Makefile,v 1.25 2022/09/07 10:07:39 kn Exp $
 
 INSTALLBOOT ?=         /usr/sbin/installboot
 DRY_RUN =              ${INSTALLBOOT} -n
 REAL_RUN =             ${INSTALLBOOT}
 
-# whether to show commands and run with -v
-VERBOSE ?=             No
-
 # see distrib/${MACHINE}/ramdisk/install.md for FORMAT_DISK values
 # default to root on softraid(4) on all architectures that have
 # bootstrap + kernel + installboot(8) support for it
@@ -181,11 +178,4 @@ cleanup:
        ${SUDO} vnconfig -u -- "$$(<${devfile})" 2>/dev/null
 .endfor
 
-
-.if ${VERBOSE:L} == "yes"
-INSTALLBOOT +=         -v
-.else
-.SILENT: ${REGRESS_CLEANUP} clean
-.endif
-
 .include <bsd.regress.mk>