diff options
author | Aurélien Lefebvre <alefebvre@mandriva.com> | 2009-08-17 13:13:37 +0000 |
---|---|---|
committer | Aurélien Lefebvre <alefebvre@mandriva.com> | 2009-08-17 13:13:37 +0000 |
commit | 16b86cca6fa2a49687d9fc75781726c1c2d6ac90 (patch) | |
tree | e5d6708ad3bb7dae08eafbd6806f316acb4ba19a | |
parent | 30a1ab53da96801eb89f3632cc5b8e4951a1b73c (diff) | |
download | drakx-16b86cca6fa2a49687d9fc75781726c1c2d6ac90.tar drakx-16b86cca6fa2a49687d9fc75781726c1c2d6ac90.tar.gz drakx-16b86cca6fa2a49687d9fc75781726c1c2d6ac90.tar.bz2 drakx-16b86cca6fa2a49687d9fc75781726c1c2d6ac90.tar.xz drakx-16b86cca6fa2a49687d9fc75781726c1c2d6ac90.zip |
- drakhelp : fix firefox launch bug #29775
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rwxr-xr-x | perl-install/standalone/drakhelp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index cf1c3f561..b1dc54cb7 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- drakhelp + o fix firefox launch bug #29775 - added the ability to add up/down buttons in add_modify_remove list of interactive - drakboot : diff --git a/perl-install/standalone/drakhelp b/perl-install/standalone/drakhelp index 3eaf580cc..9f23a0353 100755 --- a/perl-install/standalone/drakhelp +++ b/perl-install/standalone/drakhelp @@ -44,7 +44,7 @@ if (! -e $instpath) { } if (-e $instpath) { - local $ENV{HOME} = '/root'; + local $ENV{HOME} = '/root' if !$<; run_program::raw({ detach => 1 }, '/usr/bin/www-browser', "file://$ancpath"); } else { $ugtk2::wm_icon = "help"; |