diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-01-02 23:45:27 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-01-02 23:45:27 +0000 |
commit | 3b41a5ae8a1ef00e75ef73a12dc4133d3ed26f64 (patch) | |
tree | 367a474539e79aaf42be27623460c2de79e01837 | |
parent | b6f5856600d9d6cbdde2189872a6b6dce69fe407 (diff) | |
download | drakx-3b41a5ae8a1ef00e75ef73a12dc4133d3ed26f64.tar drakx-3b41a5ae8a1ef00e75ef73a12dc4133d3ed26f64.tar.gz drakx-3b41a5ae8a1ef00e75ef73a12dc4133d3ed26f64.tar.bz2 drakx-3b41a5ae8a1ef00e75ef73a12dc4133d3ed26f64.tar.xz drakx-3b41a5ae8a1ef00e75ef73a12dc4133d3ed26f64.zip |
use more readable warning messages for missing modules between pci-ids and files actually in marfiles
-rwxr-xr-x | mdk-stage1/pci-resource/update-pci-ids.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/pci-resource/update-pci-ids.pl b/mdk-stage1/pci-resource/update-pci-ids.pl index 06dd302e9..732131421 100755 --- a/mdk-stage1/pci-resource/update-pci-ids.pl +++ b/mdk-stage1/pci-resource/update-pci-ids.pl @@ -47,7 +47,7 @@ struct pci_module_map ${type}_pci_ids[] = { ($absent{$v->[0]} = 1) if (!grep(/^$v->[0]\.o\s/, @{$modulez{$type}})); } - if (%absent) { print STDERR "missing for $type: "; foreach (keys %absent) { print STDERR "$_ " } print STDERR "\n"; }; + if (%absent) { print STDERR "\tmissing for $type: "; foreach (keys %absent) { print STDERR "$_ " } print STDERR "\n"; }; print " }; |