aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Dave MacLachlan <dmaclach@google.com>2015-11-17 23:28:06 +0000
committerGravatar Lukacs Berki <lberki@google.com>2015-11-18 15:31:07 +0000
commit9190c8407cb3de13f33f85a856ef31d23b759fb7 (patch)
tree43938def93d6982c718f3e4256a6c4d5c5dc911f /src
parent273fa90afa0f501d94f5a8752c48bb6e3c11ba1d (diff)
Get rid of compression when zipping up files to improve local compilation performance.
RELNOTES:none -- MOS_MIGRATED_REVID=108086031
Diffstat (limited to 'src')
-rwxr-xr-xsrc/tools/xcode/actoolwrapper/actoolwrapper.sh2
-rwxr-xr-xsrc/tools/xcode/ibtoolwrapper/ibtoolwrapper.sh2
-rwxr-xr-xsrc/tools/xcode/momcwrapper/momcwrapper.sh2
-rwxr-xr-xsrc/tools/xcode/swiftstdlibtoolwrapper/swiftstdlibtoolwrapper.sh2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/xcode/actoolwrapper/actoolwrapper.sh b/src/tools/xcode/actoolwrapper/actoolwrapper.sh
index 28aef05474..1c3b0ceed3 100755
--- a/src/tools/xcode/actoolwrapper/actoolwrapper.sh
+++ b/src/tools/xcode/actoolwrapper/actoolwrapper.sh
@@ -81,5 +81,5 @@ find . -exec touch -h -t 198001010000 {} \;
# Added include "*" to fix case where we may want an empty zip file because
# there is no data.
-zip --symlinks --recurse-paths --quiet "$OUTZIP" . --include "*"
+zip --compression-method store --symlinks --recurse-paths --quiet "$OUTZIP" . --include "*"
popd > /dev/null
diff --git a/src/tools/xcode/ibtoolwrapper/ibtoolwrapper.sh b/src/tools/xcode/ibtoolwrapper/ibtoolwrapper.sh
index 346744f3d7..f8a807468a 100755
--- a/src/tools/xcode/ibtoolwrapper/ibtoolwrapper.sh
+++ b/src/tools/xcode/ibtoolwrapper/ibtoolwrapper.sh
@@ -79,5 +79,5 @@ find . -exec touch -h -t 198001010000 {} \;
# Added include "*" to fix case where we may want an empty zip file because
# there is no data.
-zip --symlinks --recurse-paths --quiet "$OUTZIP" . --include "*"
+zip --compression-method store --symlinks --recurse-paths --quiet "$OUTZIP" . --include "*"
popd > /dev/null
diff --git a/src/tools/xcode/momcwrapper/momcwrapper.sh b/src/tools/xcode/momcwrapper/momcwrapper.sh
index fc846637e0..82a66c8f5c 100755
--- a/src/tools/xcode/momcwrapper/momcwrapper.sh
+++ b/src/tools/xcode/momcwrapper/momcwrapper.sh
@@ -49,5 +49,5 @@ find . -exec touch -h -t 198001010000 {} \;
# Added include "*" to fix case where we may want an empty zip file because
# there is no data.
-zip --symlinks --recurse-paths --quiet "$OUTZIP" . --include "*"
+zip --compression-method store --symlinks --recurse-paths --quiet "$OUTZIP" . --include "*"
popd > /dev/null
diff --git a/src/tools/xcode/swiftstdlibtoolwrapper/swiftstdlibtoolwrapper.sh b/src/tools/xcode/swiftstdlibtoolwrapper/swiftstdlibtoolwrapper.sh
index ed7d47122d..24bf573898 100755
--- a/src/tools/xcode/swiftstdlibtoolwrapper/swiftstdlibtoolwrapper.sh
+++ b/src/tools/xcode/swiftstdlibtoolwrapper/swiftstdlibtoolwrapper.sh
@@ -49,5 +49,5 @@ find . -exec touch -h -t 198001010000 {} \;
# Added include "*" to fix case where we may want an empty zip file because
# there is no data.
-zip --symlinks --recurse-paths --quiet "$OUTZIP" . --include "*"
+zip --compression-method store --symlinks --recurse-paths --quiet "$OUTZIP" . --include "*"
popd > /dev/null