diff options
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rwxr-xr-x | perl-install/standalone/drakhelp | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 60aa8260a..a18a1a77f 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- drakhelp: + o fix firefox launch bug #29775 + Version 11.71.9 - 27 April 2009 - finish-install: 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"; |