diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-14 21:16:10 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-14 21:16:10 +0000 |
commit | f5f0f1d8ef13d46e48c124b8f364471076ad4358 (patch) | |
tree | 59449f0cacdedb81a8d8c5a34bc846c0ab034b1e /chrome/tools/build | |
parent | b3dbb00dddff5009456dd5f6f0667603581909aa (diff) | |
download | chromium_src-f5f0f1d8ef13d46e48c124b8f364471076ad4358.zip chromium_src-f5f0f1d8ef13d46e48c124b8f364471076ad4358.tar.gz chromium_src-f5f0f1d8ef13d46e48c124b8f364471076ad4358.tar.bz2 |
rsync needs -C to avoid copying .svn directories.
I'm not adding temporary code to remove .svn directories that may have gotten
copied in because this only applies to the KeystoneRegistration.framework,
not present in ordinary developer builds.
BUG=24823
TEST=|find "Google Chrome.app" -name .svn| should not show anything
Review URL: http://codereview.chromium.org/273057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29028 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools/build')
-rwxr-xr-x | chrome/tools/build/mac/copy_framework_unversioned | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/tools/build/mac/copy_framework_unversioned b/chrome/tools/build/mac/copy_framework_unversioned index 4223f67..f33a980 100755 --- a/chrome/tools/build/mac/copy_framework_unversioned +++ b/chrome/tools/build/mac/copy_framework_unversioned @@ -76,7 +76,7 @@ DESTINATION="${DESTINATION_DIR}/${FRAMEWORK_NAME}" # Copy the versioned directory within the versioned framework to its # destination location. mkdir -p "${DESTINATION_DIR}" -rsync -ac --delete --exclude Headers --exclude PrivateHeaders \ +rsync -acC --delete --exclude Headers --exclude PrivateHeaders \ "${CURRENT_VERSION}/" "${DESTINATION}" # The --exclude will prevent Headers and PrivateHeaders from showing up in |