1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Oliver Korff <ok@xynyx.de>
Date: Mon, 27 Aug 2007 09:36:10 +0200
Subject: Add library path for .pm modules
Forwarded: not-needed
---
tourney.pl | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tourney.pl b/tourney.pl
index 772dda4..c53d96b 100755
--- a/tourney.pl
+++ b/tourney.pl
@@ -27,6 +27,8 @@ use File::Glob ':glob';
use Getopt::Std;
use Term::ReadLine;
+# Added for debian distr by ok@xynyx.de
+use lib '/usr/share/tourney-manager/';
use Tourney;
use Crosstable;
|