configure: prefix 'echo' in Makefile with @
This avoids a duplicate "Please add $prefix/bin/foo to /etc/shells" line being generated.792f70d3f568f99d6a73091de20a3b23f6e11f01
configure | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure b/configure
@@ -752,12 +752,12 @@ EOF
fi
cat << EOF >> Makefile
- echo "Please add $prefix/bin/$instprog to /etc/shells"
+ @echo "Please add $prefix/bin/$instprog to /etc/shells"
EOF
if [ $instsh -ne 0 ] ; then
cat << EOF >> Makefile
- echo "Please add $prefix/bin/sh to /etc/shells"
+ @echo "Please add $prefix/bin/sh to /etc/shells"
EOF
fi