mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
my_md5sum:
Added code to use locally installed perl modules first
This commit is contained in:
parent
1afa895962
commit
1adf2aacc6
1 changed files with 12 additions and 1 deletions
|
@ -10,10 +10,21 @@
|
|||
# Written by Matt Wagner <matt@mysql.com>
|
||||
#
|
||||
use strict;
|
||||
|
||||
#
|
||||
# Use local perl libraries first. 'unshift' adds to the front of @INC
|
||||
# The local perl library dir hidden is $HOME/.perllibs on each build host
|
||||
#
|
||||
BEGIN
|
||||
{
|
||||
my $homedir= $ENV{HOME};
|
||||
unshift (@INC, "$homedir/.perllibs");
|
||||
}
|
||||
|
||||
use Digest::MD5;
|
||||
use Getopt::Long;
|
||||
|
||||
my $VER= "1.1";
|
||||
my $VER= "1.2";
|
||||
|
||||
#
|
||||
# Strip the leading path info off the program name ($0). We want 'my_md5sum'
|
||||
|
|
Loading…
Reference in a new issue