diff options
| author | bors <bors@rust-lang.org> | 2013-06-08 11:46:13 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-06-08 11:46:13 -0700 |
| commit | 59bbbe43350f3fc13ade4e414a5e9bca3907ddb7 (patch) | |
| tree | 3412548a438b8857fe69cf80c9528c5e7c2464bd | |
| parent | b8fa9d3be10e952fbcaf14f3098aebf13dedd7ec (diff) | |
| parent | 8b87debbc28d947220614f315cbcee5dfe17436a (diff) | |
| download | rust-59bbbe43350f3fc13ade4e414a5e9bca3907ddb7.tar.gz rust-59bbbe43350f3fc13ade4e414a5e9bca3907ddb7.zip | |
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>
| -rwxr-xr-x | configure | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure b/configure index e581631b71d..1c658af9fee 100755 --- a/configure +++ b/configure @@ -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 |
