diff options
author | bradchen@google.com <bradchen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-08 20:13:32 +0000 |
---|---|---|
committer | bradchen@google.com <bradchen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-08 20:13:32 +0000 |
commit | f969c3779e9dddc84ac219d4b5f539dee78ad535 (patch) | |
tree | 44925d32197c2ba9e4380a459f9f4b1380a88277 /tools | |
parent | a8cb14d5378aa9b9c4b9c1ada4a115bebe7cc37f (diff) | |
download | chromium_src-f969c3779e9dddc84ac219d4b5f539dee78ad535.zip chromium_src-f969c3779e9dddc84ac219d4b5f539dee78ad535.tar.gz chromium_src-f969c3779e9dddc84ac219d4b5f539dee78ad535.tar.bz2 |
Fixing a nit: "gcc" => "g++"
BUG=none
TEST=the bots
Review URL: http://codereview.chromium.org/7845021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100232 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/ld_bfd/ld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ld_bfd/ld b/tools/ld_bfd/ld index 41a9776..f8ed124 100755 --- a/tools/ld_bfd/ld +++ b/tools/ld_bfd/ld @@ -26,7 +26,7 @@ def PathTo(fname): def FindLDBFD(): cxx = os.getenv("CXX") if not cxx: - cxx = "gcc" + cxx = "g++" popen = subprocess.Popen(cxx + " -print-prog-name=ld", shell=True, stdout=subprocess.PIPE, |