mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 22:34:05 +00:00
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:
parent
1d06aea0b7
commit
8b87debbc2
10
configure
vendored
10
configure
vendored
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user