Skip to content

Commit

Permalink
auto merge of #6970 : artagnon/rust/configure, r=catamorphism
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
bors committed Jun 8, 2013
2 parents b8fa9d3 + 8b87deb commit 59bbbe4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions configure
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -394,7 +394,7 @@ validate_opt

if [ $HELP -eq 1 ]
then
echo ""
echo
exit 0
fi

Expand Down

0 comments on commit 59bbbe4

Please sign in to comment.