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

Unified Diff: ports/gtest/build.sh

Issue 1563353002: Remove use of --no-preserve=mode argument to 'cp' (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: Created 4 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: ports/gtest/build.sh
diff --git a/ports/gtest/build.sh b/ports/gtest/build.sh
index 0390f22a33caf4e4c3151bfcc6e97ede484ebbd4..2a7debb258af651f0994c3855ad3be98dcd875b3 100644
--- a/ports/gtest/build.sh
+++ b/ports/gtest/build.sh
@@ -78,10 +78,8 @@ InstallStep() {
local srcdir=${DESTDIR}/${PREFIX}/src
MakeDir ${srcdir}/gtest/include
- LogExecute cp -r --no-preserve=mode ${SRC_DIR}/include/gtest \
- ${srcdir}/gtest/include/gtest
-
- LogExecute cp -r --no-preserve=mode ${SRC_DIR}/src ${srcdir}/gtest
+ LogExecute cp -r ${SRC_DIR}/include/gtest ${srcdir}/gtest/include/gtest
+ LogExecute cp -r ${SRC_DIR}/src ${srcdir}/gtest
}
TestStep() {
« 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