diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network/netconnect.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index fe4fc97fb..7cb53c976 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -1127,7 +1127,7 @@ notation (for example, 1.2.3.4).")), } if ($ndiswrapper_driver eq N("Install a new driver")) { if ($ndiswrapper_inf_file = $in->ask_file(N("Please select the Windows driver (.inf file)"), "/mnt/cdrom")) { - return system("ndiswrapper -i $ndiswrapper_inf_file"); + return system('ndiswrapper', '-i', $ndiswrapper_inf_file); } return 1; } |