From f8d8a091ce25581ea862ee242305a8591e292c18 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Tue, 5 Jun 2007 17:28:48 +0200 Subject: [PATCH] A couple of fixes to library paths. --- submit/remote-status | 4 ++-- submit/remote-submit | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/submit/remote-status b/submit/remote-status index aa13379..21d8b95 100755 --- a/submit/remote-status +++ b/submit/remote-status @@ -6,8 +6,8 @@ use warnings; BEGIN { defined $ENV{"MO_ROOT"} or die "Please set MO_ROOT to the contest root directory first.\n"; } -use lib $ENV{"MO_ROOT"} . "/lib/perl5"; -use lib "."; ### FIXME +use lib $ENV{"MO_ROOT"} . "/submit"; +use lib $ENV{"MO_ROOT"} . "/submit/lib/perl5"; use MO::Submit; use Sherlock::Object; diff --git a/submit/remote-submit b/submit/remote-submit index 543ed7a..2091708 100755 --- a/submit/remote-submit +++ b/submit/remote-submit @@ -6,8 +6,8 @@ use warnings; BEGIN { defined $ENV{"MO_ROOT"} or die "Please set MO_ROOT to the contest root directory first.\n"; } -use lib $ENV{"MO_ROOT"} . "/lib/perl5"; -use lib "."; ### FIXME +use lib $ENV{"MO_ROOT"} . "/submit"; +use lib $ENV{"MO_ROOT"} . "/submit/lib/perl5"; use MO::Submit; use Sherlock::Object; -- 2.39.2