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

Unified 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, 10 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 | « chrome/installer/mac/keystone_install.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/build/mac/copy_keychain_reauthorize.sh
diff --git a/chrome/tools/build/mac/copy_keychain_reauthorize.sh b/chrome/tools/build/mac/copy_keychain_reauthorize.sh
deleted file mode 100755
index 9c0b811d01aae32d1389298914a7285b6b54c24b..0000000000000000000000000000000000000000
--- a/chrome/tools/build/mac/copy_keychain_reauthorize.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# A normal 'copies' section slightly alters the binaries copied by changing
-# the vmsize of their __LINKEDIT segments, invalidating their signatures. This
-# script performs the copies without alteration.
-
-set -eu
-
-if [[ ${#} -lt 2 ]]; then
- echo "usage: ${0} <target_dir> file [...]" >& 2
- exit 1
-fi
-
-TARGET_DIR="${1}"
-shift
-
-# Because ninja (and maybe make) had been making symbolic links in
-# ${TARGET_DIR}, blow the whole thing away and start fresh.
-rm -rf "${TARGET_DIR}"
-
-mkdir -p "${TARGET_DIR}"
-cp "${@}" "${TARGET_DIR}"
« 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