From: Carl Worth Date: Tue, 6 Apr 2010 17:00:30 +0000 (-0700) Subject: Makefiles: Eliminate the useless quiet_* functions. X-Git-Tag: debian-0.1-1~26 X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;ds=sidebyside;h=f89b3d16db90be99c3097c8dac0d95930cdd1f1d;hp=f89b3d16db90be99c3097c8dac0d95930cdd1f1d;p=notmuch Makefiles: Eliminate the useless quiet_* functions. With the original quiet function, there's an actual purpose (hiding excessively long compiler command lines so that warnings and errors from the compiler can be seen). But with things like quiet_symlink there's nothing quieter. In fact "SYMLINK" is longer than "ln -sf". So all this is doing is hiding the actual command from the user for no real benefit. The only actual reason we implemented the quiet_* functions was to be able to neatly right-align the command name and left-align the arguments. Let's give up on that, and just left-align everything, simplifying the Makefiles considerably. Now, the only instances of a captialized command name in the output is if there's some actually shortening of the command itself. ---