diff options
author | Aurélien Lefebvre <alefebvre@mandriva.com> | 2009-08-17 13:45:21 +0000 |
---|---|---|
committer | Aurélien Lefebvre <alefebvre@mandriva.com> | 2009-08-17 13:45:21 +0000 |
commit | fb730ae27d52fbbe3f0d43ac786187f891f1e3d9 (patch) | |
tree | 04d27b8ff89bdf4e3aabd0741bca01fb422aa82b /perl-install | |
parent | 5a06e5878810926ff882dfab965b61228827f65b (diff) | |
download | drakx-backup-do-not-use-fb730ae27d52fbbe3f0d43ac786187f891f1e3d9.tar drakx-backup-do-not-use-fb730ae27d52fbbe3f0d43ac786187f891f1e3d9.tar.gz drakx-backup-do-not-use-fb730ae27d52fbbe3f0d43ac786187f891f1e3d9.tar.bz2 drakx-backup-do-not-use-fb730ae27d52fbbe3f0d43ac786187f891f1e3d9.tar.xz drakx-backup-do-not-use-fb730ae27d52fbbe3f0d43ac786187f891f1e3d9.zip |
- drakhelp: fix firefox launch bug #29775
Diffstat (limited to 'perl-install')
-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 d7bbb2d6d..940c1e4d0 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- drakhelp: + o fix firefox launch bug #29775 - do open bug in running firefox drakbug (#31109) Version 10.4.239.5 - 8 May 2008, Thierry Vignaud diff --git a/perl-install/standalone/drakhelp b/perl-install/standalone/drakhelp index 4e4716684..ab8a1b9df 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"; |