diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-06-04 22:22:43 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-06-04 22:22:43 +0000 |
commit | f6c7f5f6b0edbd8cbd645773035a077bf582019e (patch) | |
tree | a1373c445333646484dfc3b58351ba2ee3ccf2a9 | |
parent | 2494c8a6fe6a51791b514546f40b706f2ec3845a (diff) | |
download | drakx-f6c7f5f6b0edbd8cbd645773035a077bf582019e.tar drakx-f6c7f5f6b0edbd8cbd645773035a077bf582019e.tar.gz drakx-f6c7f5f6b0edbd8cbd645773035a077bf582019e.tar.bz2 drakx-f6c7f5f6b0edbd8cbd645773035a077bf582019e.tar.xz drakx-f6c7f5f6b0edbd8cbd645773035a077bf582019e.zip |
drakhelp: fix .mozilla dir as root when it doesn't exists (#29775)
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/standalone/drakhelp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 6f81f3451..2e5b34c2e 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -5,6 +5,8 @@ with the same fraction (eg #30090) - diskdrake: o when formatting ntfs don't zero partition (#30928) +- drakhelp: + o fix .mozilla dir as root when it doesn't exists (#29775) - draksec: o make the help dialog clearer about default values (#24159) - harddrake GUI: diff --git a/perl-install/standalone/drakhelp b/perl-install/standalone/drakhelp index f99c2bb0f..15c4963c2 100644 --- a/perl-install/standalone/drakhelp +++ b/perl-install/standalone/drakhelp @@ -44,6 +44,7 @@ if (! -e $instpath) { } if (-e $instpath) { + local $ENV{HOME} = '/root'; system("/usr/bin/www-browser file://$ancpath &"); } else { $ugtk2::wm_icon = "help"; |