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

Unified Diff: tools/clang/scripts/package.sh

Issue 440813003: mac: Actually include libc++ headers in clang package. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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: tools/clang/scripts/package.sh
diff --git a/tools/clang/scripts/package.sh b/tools/clang/scripts/package.sh
index 0e05d903599e41c22041005aa87d91a3ff309b48..2e81346ddd273447230c3096e5dcea8e94a35392 100755
--- a/tools/clang/scripts/package.sh
+++ b/tools/clang/scripts/package.sh
@@ -158,7 +158,11 @@ fi
cp -R "${LLVM_LIB_DIR}/clang" $PDIR/lib
-tar zcf $PDIR.tgz -C $PDIR bin lib buildlog.txt
+if [ "$(uname -s)" = "Darwin" ]; then
+ tar zcf $PDIR.tgz -C $PDIR bin include lib buildlog.txt
+else
+ tar zcf $PDIR.tgz -C $PDIR bin lib buildlog.txt
+fi
if [ "$(uname -s)" = "Darwin" ]; then
PLATFORM=Mac
« 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