summaryrefslogtreecommitdiff
path: root/Build-tools
diff options
context:
space:
mode:
authorunknown <mwagner@here.mwagner.org>2004-07-07 16:28:07 -0500
committerunknown <mwagner@here.mwagner.org>2004-07-07 16:28:07 -0500
commitfc3c71e9b6365ea1735aef3cc6ddb4dcbe19cff9 (patch)
tree2a5d1519e5706bcfb05210eada0afca5f2b7226b /Build-tools
parent7b6712a0614987ce49c9f523272a495537bc86a5 (diff)
downloadmariadb-git-fc3c71e9b6365ea1735aef3cc6ddb4dcbe19cff9.tar.gz
my_md5sum:
Exit properly Build-tools/my_md5sum: Exit properly
Diffstat (limited to 'Build-tools')
-rwxr-xr-xBuild-tools/my_md5sum8
1 files changed, 7 insertions, 1 deletions
diff --git a/Build-tools/my_md5sum b/Build-tools/my_md5sum
index 481a665af1a..f4ac2f7d674 100755
--- a/Build-tools/my_md5sum
+++ b/Build-tools/my_md5sum
@@ -24,7 +24,8 @@ BEGIN
use Digest::MD5;
use Getopt::Long;
-my $VER= "1.2";
+my $VER= "1.3";
+my $EXIT= 0;
#
# Strip the leading path info off the program name ($0). We want 'my_md5sum'
@@ -78,6 +79,9 @@ if ($opt_check)
# Print an error message if they don't match, else print OK
print "$checkfile: FAILED\n" if $digest ne $checksum;
print "$checkfile: OK\n" if $digest eq $checksum;
+
+ # Set the exit() status to non-zero if FAILED
+ $EXIT= 1 if $digest ne $checksum;
}
}
# Else generate the MD5 digest to STDOUT
@@ -91,6 +95,8 @@ else
}
}
+exit($EXIT);
+
#
# This routine generates the MD5 digest of a file