(svn r2895) Remove unused variables and bring a comment closer to reality
authortron
Sat, 27 Aug 2005 13:06:59 +0000
changeset 2369 80ca2ba71384
parent 2368 cb44b5c6953d
child 2370 939a6e08adbc
(svn r2895) Remove unused variables and bring a comment closer to reality
Makefile
--- a/Makefile	Sat Aug 27 13:04:15 2005 +0000
+++ b/Makefile	Sat Aug 27 13:06:59 2005 +0000
@@ -736,16 +736,13 @@
 # Build commands
 #
 
-# If we are verbose, we will show commands prefixed by $(Q) (which acts as
-# @ in the non-verbose mode), and we will show the "real" cmds instead of
-# their quiet versions (which are used in the non-verbose mode).
+# If we are verbose, we will show commands prefixed by $(Q).
+# The $(Q)s get replaced by @ in non-verbose mode.
 # Inspired by the Linux kernel build system.
 ifdef VERBOSE
 	Q =
-	quiet =
 else
 	Q = @
-	quiet = quiet_
 endif