auto merge of #6970 : artagnon/rust/configure, r=catamorphism

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:
bors 2013-06-08 11:46:13 -07:00
commit 59bbbe4335

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