diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-03-02 09:57:07 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-03-02 09:57:07 +0000 |
commit | fbaf153548dd3def4857dda99647eaad632800c4 (patch) | |
tree | 4ee2a70d5f43947cfcc598cdee32d583ec9b701e /perl-install | |
parent | 7583963457122119f2b759bc5cc6332f1f033f67 (diff) | |
download | drakx-fbaf153548dd3def4857dda99647eaad632800c4.tar drakx-fbaf153548dd3def4857dda99647eaad632800c4.tar.gz drakx-fbaf153548dd3def4857dda99647eaad632800c4.tar.bz2 drakx-fbaf153548dd3def4857dda99647eaad632800c4.tar.xz drakx-fbaf153548dd3def4857dda99647eaad632800c4.zip |
screenshot_dir__and_move(): use /tmp which is ramdisk instead of /tmp/stage2 which is now always read-only
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 32d3958a5..bac605449 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -1607,7 +1607,7 @@ sub X_options_from_o { } sub screenshot_dir__and_move() { - my ($dir1, $dir2) = ("$::prefix/root", '/tmp/stage2'); + my ($dir1, $dir2) = ("$::prefix/root", '/tmp'); if (-e $dir1) { if (-e "$dir2/DrakX-screenshots") { cp_af("$dir2/DrakX-screenshots", $dir1); |