diff options
author | Ian Lance Taylor <iant@golang.org> | 2009-11-01 16:29:33 -0800 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2009-11-01 16:29:33 -0800 |
commit | efd9da496a154c6191fb7bc9dd24bd4d97c7802e (patch) | |
tree | 6b2c293bab66bbc831fb42e1030065e81b4261b5 | |
parent | 5fead7ed732949530106145531f7f8e86901dfde (diff) | |
download | golang-efd9da496a154c6191fb7bc9dd24bd4d97c7802e.tar.gz |
Permit the CC environment variable to include arguments
(I should have tested the last change a bit more before
submitting).
R=rsc
http://go/go-review/1017011
-rwxr-xr-x | src/quietgcc.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quietgcc.bash b/src/quietgcc.bash index 29f22ee0a..54e091e25 100755 --- a/src/quietgcc.bash +++ b/src/quietgcc.bash @@ -17,7 +17,7 @@ ignore=$ignore'|In file included from' ignore=$ignore'| from' # Figure out which cc to run; this is set by make.bash. -gcc=@CC@ +gcc="@CC@" if test "$gcc" = "@C""C@"; then gcc=gcc fi |