From 379759d3a6a4bf32055f9fadbd56c7e7138a3f21 Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Mon, 27 May 2002 16:17:19 +0000 Subject: make sure patch is always read after defcfg to take precedance. --- perl-install/install2.pm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/perl-install/install2.pm b/perl-install/install2.pm index a15b089ca..19abc9b81 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -501,11 +501,12 @@ sub main { } require"install_steps_$o->{interactive}.pm" if $o->{interactive}; #- no space to skip perl2fcalls - # needed before accessing floppy (in case of usb floppy) + #- needed before accessing floppy (in case of usb floppy) $::noauto or modules::load_thiskind("usb"); - - eval { $o = $::o = install_any::loadO($o, "patch") } if $patch; + + #- patch should be read after defcfg in order to take precedance. eval { $o = $::o = install_any::loadO($o, $cfg) } if $cfg; + eval { $o = $::o = install_any::loadO($o, "patch") } if $patch; eval { modules::load("af_packet") }; -- cgit v1.2.1