diff options
author | Florent Villard <warly@mandriva.com> | 2003-08-22 21:29:12 +0000 |
---|---|---|
committer | Florent Villard <warly@mandriva.com> | 2003-08-22 21:29:12 +0000 |
commit | de6e60435383dbebc186933d54b1b9bc68aba118 (patch) | |
tree | 0f8111bf3792d88d39d64fde0793e20dd7305607 /common/Wizcommon.pm | |
parent | 150bc87396011253a541ca0ad32250e926ab0ecc (diff) | |
download | drakwizard-de6e60435383dbebc186933d54b1b9bc68aba118.tar drakwizard-de6e60435383dbebc186933d54b1b9bc68aba118.tar.gz drakwizard-de6e60435383dbebc186933d54b1b9bc68aba118.tar.bz2 drakwizard-de6e60435383dbebc186933d54b1b9bc68aba118.tar.xz drakwizard-de6e60435383dbebc186933d54b1b9bc68aba118.zip |
fix the IFCFG reset of PATH env var which breaks packages installation
Diffstat (limited to 'common/Wizcommon.pm')
-rw-r--r-- | common/Wizcommon.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/Wizcommon.pm b/common/Wizcommon.pm index 847f41f9..6ade7ec8 100644 --- a/common/Wizcommon.pm +++ b/common/Wizcommon.pm @@ -18,7 +18,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -package Wizcommon; +package MDK::Wizard::Wizcommon; use strict; use MDK::Wizard::IFCFG; @@ -30,7 +30,7 @@ sub check_dhcp { sub new { my ($class, $conf) = @_; - $net = new IFCFG; + $net = new MDK::Wizard::IFCFG; bless { net => $net, }, $class; |