From 56f0814871a1d7b2ea2c3b20b9860aa45bfc609b Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 9 Oct 2009 16:43:13 -0700 Subject: [PATCH] push_to_kclient: no -u to cp, the timestamps may be ordered --- src/push_to_kclient.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/push_to_kclient.pl b/src/push_to_kclient.pl index 45237f0d55cee..8c0d501c6958b 100755 --- a/src/push_to_kclient.pl +++ b/src/push_to_kclient.pl @@ -21,11 +21,11 @@ for (@files) { next if /^#/; my ($orig, $new) = split(/\s+/, $_); #print "$dir/$orig -> $new\n"; - system "cp -uv $dir/$orig $kernel/$new"; + system "cp -v $dir/$orig $kernel/$new"; } print "pulling changed shared files from $dir to $kernel...\n"; -system "cp -uv $kernel/fs/ceph/ioctl.h $dir/src/client/ioctl.h"; +system "cp -v $kernel/fs/ceph/ioctl.h $dir/src/client/ioctl.h"; print "done.\n"; -- 2.39.5