[SimBot-commits] CVS: simbot simbot.pl,1.145,1.146
Status: Abandoned
Brought to you by:
kstange
|
From: Kevin S. <ks...@us...> - 2006-01-17 11:22:09
|
Update of /cvsroot/simbot/simbot In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19667 Modified Files: simbot.pl Log Message: Put our lib directory first, so as to override any Net::Dict found on the system. Index: simbot.pl =================================================================== RCS file: /cvsroot/simbot/simbot/simbot.pl,v retrieving revision 1.145 retrieving revision 1.146 diff -u -d -p -r1.145 -r1.146 --- simbot.pl 17 Dec 2005 10:11:56 -0000 1.145 +++ simbot.pl 17 Jan 2006 11:22:00 -0000 1.146 @@ -25,7 +25,7 @@ package SimBot; BEGIN { - push (@INC, "./lib"); + unshift (@INC, "./lib"); } use SimBot::Util; |