diff options
-rwxr-xr-x | move/make_live | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/move/make_live b/move/make_live index 88c38233f..a262ec514 100755 --- a/move/make_live +++ b/move/make_live @@ -92,10 +92,11 @@ print "Making live in $::prefix directory.\n"; { eval { fs::umount("$::prefix/proc") }; - eval { rm_rf($::prefix) }; +# eval { rm_rf($::prefix) }; output_p("$::prefix/etc/fstab", "none /proc proc defaults 0 0\n"); installPackages(); run_program::rooted($::prefix, 'ldconfig'); + any::fix_broken_alternatives(); touch("$::prefix/etc/menu/enable_simplified"); $ENV{LC_ALL} = 'en_US'; #- update-menus doesn't work when there is no locale (aka locale "C") run_program::rooted($::prefix, 'update-menus', '-n'); |