diff options
author | dkegel@google.com <dkegel@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-18 19:45:13 +0000 |
---|---|---|
committer | dkegel@google.com <dkegel@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-18 19:45:13 +0000 |
commit | 4860584843c8eec3b2d914b441ce5412aaef874d (patch) | |
tree | 067ccb85208df6865b03ebef5c672e51b214c195 /tools | |
parent | 6ecc0d5701a9e5e991d977ed2f0e33a23c8d0e16 (diff) | |
download | chromium_src-4860584843c8eec3b2d914b441ce5412aaef874d.zip chromium_src-4860584843c8eec3b2d914b441ce5412aaef874d.tar.gz chromium_src-4860584843c8eec3b2d914b441ce5412aaef874d.tar.bz2 |
Don't include symlink to /usr/share/autofoo-baz/install-sh in valgrind tarball.
This avoids a problem building valgrind using MAKE_TARBLL=yes and USE_TARBALL=yes
on a different system.
BUG=none
TEST=install valgrind as documented in our bot setup page on a system without auto* installed.
Review URL: http://codereview.chromium.org/208027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26605 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/valgrind/build-valgrind-for-chromium.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/valgrind/build-valgrind-for-chromium.sh b/tools/valgrind/build-valgrind-for-chromium.sh index 3437222..f11e43c 100755 --- a/tools/valgrind/build-valgrind-for-chromium.sh +++ b/tools/valgrind/build-valgrind-for-chromium.sh @@ -81,6 +81,13 @@ then fi sh autogen.sh + if test -L install-sh + then + # replace symlink with actual contents! + cp install-sh install-sh.new + mv install-sh.new install-sh + chmod +x install-sh + fi # MacOSX before Snow Leopoard needs newer gdb to be able to handle -O1 chrome # Kludgily download and unpack the sources in a subdirectory. |