summaryrefslogtreecommitdiffstats
path: root/kernel/modules.pl
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-02-11 13:04:27 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-02-11 13:04:27 +0000
commitc522504578e642f961ed29fb035e9e5da8f70521 (patch)
treed31aba77f24629dfef165088c9195b004bfcc84a /kernel/modules.pl
parentf259e13c6765add90189919e5efdf9cb29753fed (diff)
downloaddrakx-backup-do-not-use-c522504578e642f961ed29fb035e9e5da8f70521.tar
drakx-backup-do-not-use-c522504578e642f961ed29fb035e9e5da8f70521.tar.gz
drakx-backup-do-not-use-c522504578e642f961ed29fb035e9e5da8f70521.tar.bz2
drakx-backup-do-not-use-c522504578e642f961ed29fb035e9e5da8f70521.tar.xz
drakx-backup-do-not-use-c522504578e642f961ed29fb035e9e5da8f70521.zip
- better error message for bad modules in modules.pl
- handle the exit code of modules.pl (so that .mar files not generated is more understandable)
Diffstat (limited to 'kernel/modules.pl')
-rw-r--r--kernel/modules.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/modules.pl b/kernel/modules.pl
index 82577b09b..64049b25d 100644
--- a/kernel/modules.pl
+++ b/kernel/modules.pl
@@ -75,9 +75,9 @@ sub flatten_and_check {
if (my @bad = difference2(\@l, [ category2modules($category) ])) {
foreach (@bad) {
if (my $cat = module2category($_)) {
- warn "module $_ is in category $cat, not in $category\n";
+ warn "ERROR in modules.pl: module $_ is in category $cat, not in $category\n";
} else {
- warn "unknown module $_\n";
+ warn "ERROR in modules.pl: unknown module $_\n";
}
}
exit 1;