diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-08 15:33:22 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-08 15:33:22 +0000 |
commit | 0295327de85ec83a6d0a37ffbb4eaeadb138f531 (patch) | |
tree | cd419dbf9d1db23bbd221fc6ea04c2c86f0d5380 /build | |
parent | 162407f17390cdd987779f4cdc808addaa7800a4 (diff) | |
download | chromium_src-0295327de85ec83a6d0a37ffbb4eaeadb138f531.zip chromium_src-0295327de85ec83a6d0a37ffbb4eaeadb138f531.tar.gz chromium_src-0295327de85ec83a6d0a37ffbb4eaeadb138f531.tar.bz2 |
Don't print the strip command line being executed in strip_save_dsym.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7850017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100150 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/mac/strip_save_dsym | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/build/mac/strip_save_dsym b/build/mac/strip_save_dsym index d99ee2e..ef08d83 100755 --- a/build/mac/strip_save_dsym +++ b/build/mac/strip_save_dsym @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright (c) 2008 The Chromium Authors. All rights reserved. +# Copyright (c) 2011 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. @@ -283,8 +283,6 @@ def strip_and_make_fake_dsym(macho): strip_path = "/usr/bin" strip_path = os.path.join(strip_path, "strip") strip_cmdline = [strip_path] + sys.argv[1:] - # Print the strip invocation so that it's obvious something is happening - print " ".join(strip_cmdline) strip_cmd = subprocess.Popen(strip_cmdline) if strip_cmd.wait() == 0: remove_dsym = False |