configure: replace echo "" with plain echo

When no arguments are given, echo prints a blank line.  These two are
equivalent:

  $ echo ""
  $ echo

Replace the former by the latter.

Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
This commit is contained in:
Ramkumar Ramachandra 2013-06-06 17:37:31 +05:30
parent 1d06aea0b7
commit 8b87debbc2
1 changed files with 5 additions and 5 deletions

10
configure vendored
View File

@ -138,7 +138,7 @@ validate_opt () {
done
if [ "$arg" = "--help" ]
then
echo ""
echo
echo "No more help available for Configure options,"
echo "check the Wiki or join our IRC channel"
break
@ -349,11 +349,11 @@ if [ "$1" = "--help" ]
then
HELP=1
shift
echo ""
echo
echo "Usage: $CFG_SELF [options]"
echo ""
echo
echo "Options:"
echo ""
echo
else
msg "recreating config.tmp"
echo '' >config.tmp
@ -394,7 +394,7 @@ validate_opt
if [ $HELP -eq 1 ]
then
echo ""
echo
exit 0
fi