summaryrefslogtreecommitdiffstats
path: root/draklive
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@mandriva.com>2009-06-18 15:00:46 +0000
committerChristophe Fergeau <cfergeau@mandriva.com>2009-06-18 15:00:46 +0000
commit36be87ab935eb3855d26acb292fe8387d65f53b0 (patch)
tree7d7de7dd41b7a72283fd70c611aa127efa034e5d /draklive
parent63f62045e5efe53ec85f531a11ec98a444ba9772 (diff)
downloaddrakiso-36be87ab935eb3855d26acb292fe8387d65f53b0.tar
drakiso-36be87ab935eb3855d26acb292fe8387d65f53b0.tar.gz
drakiso-36be87ab935eb3855d26acb292fe8387d65f53b0.tar.bz2
drakiso-36be87ab935eb3855d26acb292fe8387d65f53b0.tar.xz
drakiso-36be87ab935eb3855d26acb292fe8387d65f53b0.zip
preserve timestamps when copying files
Avoid issues with portable firefox+localeswitcher on Mandriva Flash
Diffstat (limited to 'draklive')
-rwxr-xr-xdraklive2
1 files changed, 1 insertions, 1 deletions
diff --git a/draklive b/draklive
index dfbc986..5100b4c 100755
--- a/draklive
+++ b/draklive
@@ -195,7 +195,7 @@ sub copy_files_to {
mkdir_p($dest =~ m|/$| ? $dest : dirname($dest));
my @sources = MDV::Draklive::Utils::glob__($live->{settings}{config_root} . '/' . $source);
print STDERR "copying @sources to $dest\n";
- cp_f(@sources, $dest);
+ cp_af(@sources, $dest);
my $o_perm = $o_opts && $o_opts->{mode};
chmod $o_perm, $dest if $o_perm;
}