diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-11-04 13:44:42 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-11-04 13:44:42 +0000 |
commit | 749c9a4da350b6bf1796cf9c263276ce7ce9e252 (patch) | |
tree | e4ed8055499e76353406f0a64f19a1dfd426534a /move | |
parent | f9c3d7fa037c1c262b8964800b82fcb78f68d5ca (diff) | |
download | drakx-749c9a4da350b6bf1796cf9c263276ce7ce9e252.tar drakx-749c9a4da350b6bf1796cf9c263276ce7ce9e252.tar.gz drakx-749c9a4da350b6bf1796cf9c263276ce7ce9e252.tar.bz2 drakx-749c9a4da350b6bf1796cf9c263276ce7ce9e252.tar.xz drakx-749c9a4da350b6bf1796cf9c263276ce7ce9e252.zip |
removing the slow fallback (better handled by hand)
Diffstat (limited to 'move')
-rwxr-xr-x | move/make_live_tree_boot | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/move/make_live_tree_boot b/move/make_live_tree_boot index 89ce3919b..3b97318b3 100755 --- a/move/make_live_tree_boot +++ b/move/make_live_tree_boot @@ -77,19 +77,6 @@ sub remove_light_tree { if (-e $light_prefix) { print "still there:\n"; system('find', $light_prefix); - - foreach my $dest (chomp_(`find $prefix -type l`)) { - my $orig = readlink($dest) or next; - $orig =~ s!/image_$live_name/!$light_prefix/! or next; - - unlink $dest or die "removing $dest failed: $!\n"; - rename $orig, $dest or die "moving $orig to $dest failed: $!\n"; - } - rmdir($_) foreach reverse(chomp_(`find $light_prefix -type d`)); - } - if (-e $light_prefix) { - print "still there:\n"; - system('find', $light_prefix); } } |