]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
push_to_kclient: no -u to cp, the timestamps may be ordered
authorSage Weil <sage@newdream.net>
Fri, 9 Oct 2009 23:43:13 +0000 (16:43 -0700)
committerSage Weil <sage@newdream.net>
Fri, 9 Oct 2009 23:43:13 +0000 (16:43 -0700)
src/push_to_kclient.pl

index 45237f0d55ceecfc092782bd6b202bd5929ef03a..8c0d501c6958bf28b85228e037a54c4bb759f54a 100755 (executable)
@@ -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";