Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
1adf2aac
Commit
1adf2aac
authored
Jun 29, 2004
by
mwagner@here.mwagner.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
my_md5sum:
Added code to use locally installed perl modules first
parent
1afa8959
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
Build-tools/my_md5sum
Build-tools/my_md5sum
+12
-1
No files found.
Build-tools/my_md5sum
View file @
1adf2aac
...
...
@@ -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'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment