# HG changeset patch # User Simon Howkins # Date 1255356426 -3600 # Node ID b64b5a0f8662149868de4358615c25f607662b62 # Parent 3e54a8e7805aa605405e9f929b9d546ac9f0d5a8 Added lib dir to pick up Text::CSV when it's not included with the installed perl distribution. diff -r 3e54a8e7805a -r b64b5a0f8662 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";