mirror of
https://github.com/adulau/aha.git
synced 2024-12-26 18:56:14 +00:00
kbuild: teach mkmakfile to be silent
With this fix a "make -s" is now really silent Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
parent
fd54f50284
commit
d2301249e2
1 changed files with 3 additions and 1 deletions
|
@ -17,7 +17,9 @@ if test -e $2/Makefile && ! grep -q Automatically $2/Makefile
|
||||||
then
|
then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
echo " GEN $2/Makefile"
|
if [ "${quiet}" != "silent_" ]; then
|
||||||
|
echo " GEN $2/Makefile"
|
||||||
|
fi
|
||||||
|
|
||||||
cat << EOF > $2/Makefile
|
cat << EOF > $2/Makefile
|
||||||
# Automatically generated by $0: don't edit
|
# Automatically generated by $0: don't edit
|
||||||
|
|
Loading…
Reference in a new issue