Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Unified Diff: third_party/instrumented_libraries/download_build_install.py

Issue 894723002: Instrumented libraries: fix flaky error in libpci3 build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/instrumented_libraries/download_build_install.py
diff --git a/third_party/instrumented_libraries/download_build_install.py b/third_party/instrumented_libraries/download_build_install.py
index 7452043590985d7a3fe0c3ea08ebfece1d13d1e8..7fddba236d5ec5e0637dc269622f134a93eaa803 100755
--- a/third_party/instrumented_libraries/download_build_install.py
+++ b/third_party/instrumented_libraries/download_build_install.py
@@ -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.
run_shell_commands([
'cp %s/* %s/ -rd' % (destdir, install_prefix),
+ 'mkdir -p %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)],
parsed_arguments.verbose, environment)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698