diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2008-11-21 17:00:12 -0500 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2008-12-03 15:32:02 -0500 |
commit | d2301249e2f9b9a3ba989703107192b538209e57 (patch) | |
tree | 76c8bca7da694ed2597d478e2dd8592374f9a30c /scripts | |
parent | fd54f502841c1caa7cfd5af564aad1bd017371fa (diff) |
kbuild: teach mkmakfile to be silent
With this fix a "make -s" is now really silent
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mkmakefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/mkmakefile b/scripts/mkmakefile index e65d8b33faa4..67d59c7a18dc 100644 --- a/scripts/mkmakefile +++ b/scripts/mkmakefile | |||
@@ -17,7 +17,9 @@ if test -e $2/Makefile && ! grep -q Automatically $2/Makefile | |||
17 | then | 17 | then |
18 | exit 0 | 18 | exit 0 |
19 | fi | 19 | fi |
20 | echo " GEN $2/Makefile" | 20 | if [ "${quiet}" != "silent_" ]; then |
21 | echo " GEN $2/Makefile" | ||
22 | fi | ||
21 | 23 | ||
22 | cat << EOF > $2/Makefile | 24 | cat << EOF > $2/Makefile |
23 | # Automatically generated by $0: don't edit | 25 | # Automatically generated by $0: don't edit |