commit | d2301249e2f9b9a3ba989703107192b538209e57 | [log] [tgz] |
---|---|---|
author | Sam Ravnborg <sam@ravnborg.org> | Fri Nov 21 23:00:12 2008 +0100 |
committer | Sam Ravnborg <sam@ravnborg.org> | Wed Dec 03 21:32:02 2008 +0100 |
tree | 76c8bca7da694ed2597d478e2dd8592374f9a30c | |
parent | fd54f502841c1caa7cfd5af564aad1bd017371fa [diff] [blame] |
kbuild: teach mkmakfile to be silent With this fix a "make -s" is now really silent Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
diff --git a/scripts/mkmakefile b/scripts/mkmakefile index e65d8b3..67d59c7 100644 --- a/scripts/mkmakefile +++ b/scripts/mkmakefile
@@ -17,7 +17,9 @@ then exit 0 fi -echo " GEN $2/Makefile" +if [ "${quiet}" != "silent_" ]; then + echo " GEN $2/Makefile" +fi cat << EOF > $2/Makefile # Automatically generated by $0: don't edit