Skip to content

Commit 59bbbe4

Browse files
committed
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 <[email protected]>
2 parents b8fa9d3 + 8b87deb commit 59bbbe4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

configure

+5-5
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ validate_opt () {
138138
done
139139
if [ "$arg" = "--help" ]
140140
then
141-
echo ""
141+
echo
142142
echo "No more help available for Configure options,"
143143
echo "check the Wiki or join our IRC channel"
144144
break
@@ -349,11 +349,11 @@ if [ "$1" = "--help" ]
349349
then
350350
HELP=1
351351
shift
352-
echo ""
352+
echo
353353
echo "Usage: $CFG_SELF [options]"
354-
echo ""
354+
echo
355355
echo "Options:"
356-
echo ""
356+
echo
357357
else
358358
msg "recreating config.tmp"
359359
echo '' >config.tmp
@@ -394,7 +394,7 @@ validate_opt
394394

395395
if [ $HELP -eq 1 ]
396396
then
397-
echo ""
397+
echo
398398
exit 0
399399
fi
400400

0 commit comments

Comments
 (0)