mirror of git://gcc.gnu.org/git/gcc.git
* gcc_update (silent): Unset instead of initializing to null.
From-SVN: r96708
This commit is contained in:
parent
d028e149ad
commit
7e3c8f17ab
|
|
@ -1,3 +1,7 @@
|
||||||
|
2005-03-18 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
|
* gcc_update (silent): Unset instead of initializing to null.
|
||||||
|
|
||||||
2005-03-18 Andreas Schwab <schwab@suse.de>
|
2005-03-18 Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
* gcc_update (apply_patch): Properly quote $1.
|
* gcc_update (apply_patch): Properly quote $1.
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@ self=$0
|
||||||
|
|
||||||
# This function prints its arguments to standard output unless
|
# This function prints its arguments to standard output unless
|
||||||
# "silent" is set.
|
# "silent" is set.
|
||||||
silent=
|
unset silent
|
||||||
chat () {
|
chat () {
|
||||||
if [ -z "$silent" ]; then
|
if [ -z "$silent" ]; then
|
||||||
echo "$@"
|
echo "$@"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue