[zorg] r178260 - Forgot to add in the -R to make the copy recursive.
Michael Gottesman
mgottesman at apple.com
Thu Mar 28 11:40:44 PDT 2013
Author: mgottesman
Date: Thu Mar 28 13:40:44 2013
New Revision: 178260
URL: http://llvm.org/viewvc/llvm-project?rev=178260&view=rev
Log:
Forgot to add in the -R to make the copy recursive.
Modified:
zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
Modified: zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/ClangBuilder.py?rev=178260&r1=178259&r2=178260&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/ClangBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/ClangBuilder.py Thu Mar 28 13:40:44 2013
@@ -703,7 +703,7 @@ def phasedClang(config_options, is_boots
# to get this builder to work so I am just going to copy it instead.
f.addStep(buildbot.steps.shell.ShellCommand(
name='cp.clang-tools-extra-sources',
- command=['cp', '-fv', '../../clang-tools-extra.src', 'extra'],
+ command=['cp', '-Rfv', '../../clang-tools-extra.src', 'extra'],
haltOnFailure=True, workdir='clang.src/tools',
description=['cp', 'clang-tools-extra sources']))
# Checkout the supplemental 'debuginfo-tests' repository.
More information about the llvm-commits
mailing list