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

Side by Side Diff: chrome/tools/build/mac/copy_keychain_reauthorize.sh

Issue 183713003: Remove keychain_reauthorize (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/installer/mac/keystone_install.sh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 # A normal 'copies' section slightly alters the binaries copied by changing
8 # the vmsize of their __LINKEDIT segments, invalidating their signatures. This
9 # script performs the copies without alteration.
10
11 set -eu
12
13 if [[ ${#} -lt 2 ]]; then
14 echo "usage: ${0} <target_dir> file [...]" >& 2
15 exit 1
16 fi
17
18 TARGET_DIR="${1}"
19 shift
20
21 # Because ninja (and maybe make) had been making symbolic links in
22 # ${TARGET_DIR}, blow the whole thing away and start fresh.
23 rm -rf "${TARGET_DIR}"
24
25 mkdir -p "${TARGET_DIR}"
26 cp "${@}" "${TARGET_DIR}"
OLDNEW
« no previous file with comments | « chrome/installer/mac/keystone_install.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698