diff options
Diffstat (limited to 'perl-install/commands.pm')
-rw-r--r-- | perl-install/commands.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/commands.pm b/perl-install/commands.pm index d5d511b8b..76f648a8f 100644 --- a/perl-install/commands.pm +++ b/perl-install/commands.pm @@ -358,7 +358,7 @@ sub modprobe { my $name = shift; require modules; modules::load_dependencies("/modules/modules.dep"); - modules::load([ $name, @_ ]); + modules::load_raw([ $name ], { $name => join(' ', @_) }); } sub route { |