diff -r cc469b3fe547 -r 52675b624b66 common/tools/raptor/parse.pl --- a/common/tools/raptor/parse.pl Mon Aug 24 15:09:22 2009 +0100 +++ b/common/tools/raptor/parse.pl Wed Aug 26 12:30:59 2009 +0100 @@ -13,6 +13,8 @@ # Run the raptor parsers use strict; +use FindBin; +use lib $FindBin::Bin; use RaptorReleaseable; use RaptorError; use RaptorWarning; @@ -32,6 +34,7 @@ my $unreciped_module = 0; my $recipe_module = 0; our $basedir = ''; +our $raptor_config = ''; my $append = 0; my $help = 0; GetOptions(( @@ -42,7 +45,8 @@ 'info!' => \$info_module, 'unreciped!' => \$unreciped_module, 'recipe!' => \$recipe_module, - 'basedir:s' => \$basedir, + 'basedir=s' => \$basedir, + 'config=s' => \$raptor_config, 'append!' => \$append, 'help!' => \$help ));