Commit 32f9104d authored by earthdok's avatar earthdok Committed by Commit bot

Instrumented libraries: fix flaky error in libpci3 build.

BUG=452710
TBR=glider@chromium.org
NOTRY=true

Review URL: https://codereview.chromium.org/894723002

Cr-Commit-Position: refs/heads/master@{#314149}
parent d3427850
...@@ -223,6 +223,7 @@ def libpci3_make_install(parsed_arguments, environment, install_prefix): ...@@ -223,6 +223,7 @@ def libpci3_make_install(parsed_arguments, environment, install_prefix):
# Now move the contents of the temporary destdir to their final place. # Now move the contents of the temporary destdir to their final place.
run_shell_commands([ run_shell_commands([
'cp %s/* %s/ -rd' % (destdir, install_prefix), 'cp %s/* %s/ -rd' % (destdir, install_prefix),
'mkdir -p %s/lib/' % install_prefix,
'install -m 644 lib/libpci.so* %s/lib/' % install_prefix, 'install -m 644 lib/libpci.so* %s/lib/' % install_prefix,
'ln -sf libpci.so.%s %s/lib/libpci.so.3' % (version, install_prefix)], 'ln -sf libpci.so.%s %s/lib/libpci.so.3' % (version, install_prefix)],
parsed_arguments.verbose, environment) parsed_arguments.verbose, environment)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment