summaryrefslogtreecommitdiffstats
path: root/kernel/check_mar.pl
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-07-31 17:30:44 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-07-31 17:30:44 +0000
commitb2ca176c13e2826f66193c23a403c8a793ffed3c (patch)
treeed8f37ae00f59ea5bb98ecf3e8a9d41868ea43e2 /kernel/check_mar.pl
parent134eb729a8f39155d8ed8b37bcc0445b20d3fc84 (diff)
downloaddrakx-backup-do-not-use-b2ca176c13e2826f66193c23a403c8a793ffed3c.tar
drakx-backup-do-not-use-b2ca176c13e2826f66193c23a403c8a793ffed3c.tar.gz
drakx-backup-do-not-use-b2ca176c13e2826f66193c23a403c8a793ffed3c.tar.bz2
drakx-backup-do-not-use-b2ca176c13e2826f66193c23a403c8a793ffed3c.tar.xz
drakx-backup-do-not-use-b2ca176c13e2826f66193c23a403c8a793ffed3c.zip
fix error message
Diffstat (limited to 'kernel/check_mar.pl')
-rwxr-xr-xkernel/check_mar.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/check_mar.pl b/kernel/check_mar.pl
index 556a0e442..a26795a13 100755
--- a/kernel/check_mar.pl
+++ b/kernel/check_mar.pl
@@ -26,5 +26,5 @@ foreach (keys %sanity_check) {
my @l = map { /(\S+)\.o/ } `$mar -l $marfile`;
my @pbs = difference2($sanity_check{$_}, \@l);
- @pbs and die "ERROR: sanity check should prove that " . join(" ", @pbs) . "be part of $marfile\n";
+ @pbs and die "ERROR: sanity check should prove that " . join(" ", @pbs) . " be part of $marfile\n";
}