Added lib dir to pick up Text::CSV when it's not included with the installed perl distribution.
authorSimon Howkins <simonh@symbian.org>
Mon, 12 Oct 2009 15:07:06 +0100
changeset 654 b64b5a0f8662
parent 653 3e54a8e7805a
child 655 a9ffe0d7e14c
Added lib dir to pick up Text::CSV when it's not included with the installed perl distribution.
common/tools/brag/yarpToBRAG.pl
--- a/common/tools/brag/yarpToBRAG.pl	Mon Oct 12 15:02:40 2009 +0100
+++ b/common/tools/brag/yarpToBRAG.pl	Mon Oct 12 15:07:06 2009 +0100
@@ -16,10 +16,12 @@
 
 use strict;
 
+use FindBin;
+use lib "$FindBin::Bin/../lib";
+
 use Getopt::Long;
 use Text::CSV;
 
-
 if (!@ARGV)
 {
 	warn "Generate an XML summary of the Raptor build from a Yarp CSV file\n";