Author: jim
Date: Mon May 26 18:35:16 2014
New Revision: 1597624
URL: http://svn.apache.org/r1597624
Log:
ensure we find steve.pm
Modified:
steve/trunk/cmdline/check_quorum.pl
steve/trunk/cmdline/close_issue.pl
steve/trunk/cmdline/votegroup.pl
Modified: steve/trunk/cmdline/check_quorum.pl
URL:
http://svn.apache.org/viewvc/steve/trunk/cmdline/check_quorum.pl?rev=1597624&r1=1597623&r2=1597624&view=diff
==============================================================================
--- steve/trunk/cmdline/check_quorum.pl (original)
+++ steve/trunk/cmdline/check_quorum.pl Mon May 26 18:35:16 2014
@@ -31,6 +31,10 @@
# Originally created by Roy Fielding
#
+BEGIN {
+ unshift @INC, "/home/voter/bin";
+}
+
use steve;
umask(0077);
Modified: steve/trunk/cmdline/close_issue.pl
URL:
http://svn.apache.org/viewvc/steve/trunk/cmdline/close_issue.pl?rev=1597624&r1=1597623&r2=1597624&view=diff
==============================================================================
--- steve/trunk/cmdline/close_issue.pl (original)
+++ steve/trunk/cmdline/close_issue.pl Mon May 26 18:35:16 2014
@@ -27,6 +27,10 @@
# Originally created by Roy Fielding
#
+BEGIN {
+ unshift @INC, "/home/voter/bin";
+}
+
use steve;
umask(0077);
Modified: steve/trunk/cmdline/votegroup.pl
URL:
http://svn.apache.org/viewvc/steve/trunk/cmdline/votegroup.pl?rev=1597624&r1=1597623&r2=1597624&view=diff
==============================================================================
--- steve/trunk/cmdline/votegroup.pl (original)
+++ steve/trunk/cmdline/votegroup.pl Mon May 26 18:35:16 2014
@@ -25,6 +25,10 @@
#
# Originally created by Roy Fielding
#
+BEGIN {
+ unshift @INC, "/home/voter/bin";
+}
+
require "getopts.pl";
use steve;
@@ -170,4 +174,4 @@ $pf =~ s/^$homedir\///o;
print &hash_file($votersfile), ': ', $pf, "\n";
exit(0);
-
+z