diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-14 02:12:19 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-14 02:12:19 +0000 |
commit | ed3227be7d99962518555e36b9a8ec1eaccb66d4 (patch) | |
tree | c164bf9411266eea0c7738921442b8b086fb64df /convert | |
parent | 3548cc577a903e9a3384f9e208095e85baf3630b (diff) | |
download | ldetect-lst-ed3227be7d99962518555e36b9a8ec1eaccb66d4.tar ldetect-lst-ed3227be7d99962518555e36b9a8ec1eaccb66d4.tar.gz ldetect-lst-ed3227be7d99962518555e36b9a8ec1eaccb66d4.tar.bz2 ldetect-lst-ed3227be7d99962518555e36b9a8ec1eaccb66d4.tar.xz ldetect-lst-ed3227be7d99962518555e36b9a8ec1eaccb66d4.zip |
one really must not be too strict with redhat's pcitable
Diffstat (limited to 'convert')
-rwxr-xr-x | convert/merge2pcitable.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/convert/merge2pcitable.pl b/convert/merge2pcitable.pl index 0854457d..3f0384f0 100755 --- a/convert/merge2pcitable.pl +++ b/convert/merge2pcitable.pl @@ -89,7 +89,7 @@ sub read_pcitable { length == 4 or error("$f $line: bad number $_"); lc($_); } $id1, $id2, $subid1, $subid2; - $drivers{$id} and error("$f $line: multiple entry for $id (skipping $module $text)"); + $drivers{$id} && $strict and error("$f $line: multiple entry for $id (skipping $module $text)"); $drivers{$id} ||= [ map &$rm_quote, $module, $text ]; } else { die "$f $line: bad line\n"; |