diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-10 17:45:39 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-10 17:45:39 +0000 |
commit | b2e24bd41af597277e3255d7aa70ea2efb4906cb (patch) | |
tree | f1214c3574844dd33dd38d91be6848feb49994a6 /build | |
parent | 7a7c11a648e1fc761695cd4e3794bcc80c6b1a6e (diff) | |
download | chromium_src-b2e24bd41af597277e3255d7aa70ea2efb4906cb.zip chromium_src-b2e24bd41af597277e3255d7aa70ea2efb4906cb.tar.gz chromium_src-b2e24bd41af597277e3255d7aa70ea2efb4906cb.tar.bz2 |
strip the gold linker executable in install-build-deps.sh.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/194069
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25874 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/install-build-deps.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh index 5c3f47e..8a6668e 100755 --- a/build/install-build-deps.sh +++ b/build/install-build-deps.sh @@ -67,6 +67,7 @@ __EOF__ echo "Installing gold as /usr/bin/ld." echo "To uninstall, do 'cd /usr/bin; sudo rm ld; sudo mv ld.orig ld'" test -f /usr/bin/ld && sudo mv /usr/bin/ld /usr/bin/ld.orig + sudo strip /usr/local/gold/bin/ld sudo ln -fs /usr/local/gold/bin/ld /usr/bin/ld.gold sudo ln -fs /usr/bin/ld.gold /usr/bin/ld else |