Skip to content

Commit

Permalink
kbuild: teach mkmakfile to be silent
Browse files Browse the repository at this point in the history
With this fix a "make -s" is now really silent

Signed-off-by: Sam Ravnborg <[email protected]>
  • Loading branch information
sravnborg committed Dec 3, 2008
1 parent fd54f50 commit d230124
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/mkmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ if test -e $2/Makefile && ! grep -q Automatically $2/Makefile
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
Expand Down

0 comments on commit d230124

Please sign in to comment.