From 6ef64e0229073ce5e531fdad7ec3f519652a74bf Mon Sep 17 00:00:00 2001 From: cltbld Date: Tue, 19 Oct 2004 19:52:03 +0000 Subject: [PATCH] remove -d from cp for osx compat. --- tools/tinderbox/post-mozilla-rel.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tinderbox/post-mozilla-rel.pl b/tools/tinderbox/post-mozilla-rel.pl index 51a865c69d99..940986617b06 100755 --- a/tools/tinderbox/post-mozilla-rel.pl +++ b/tools/tinderbox/post-mozilla-rel.pl @@ -651,7 +651,7 @@ sub main { if ($cachebuild) { # remove saved builds older than a week and save current build TinderUtils::run_shell_command "find $mozilla_build_dir -type d -name \"200*-*\" -prune -mtime +7 -print | xargs rm -rf"; - TinderUtils::run_shell_command "cp -rdpf $upload_directory $mozilla_build_dir/$datestamp"; + TinderUtils::run_shell_command "cp -rpf $upload_directory $mozilla_build_dir/$datestamp"; unlink "last-built"; open BLAH, ">last-built";