#!/usr/bin/perl -w

# this file is used to simplify the use of pod2hpp so you don't have to
# specify the path to the config file on every execution

# you call this script just like pod2hpp but without the -c argument.
use FindBin qw($Bin);

$ENV{PERL5LIB} = "$Bin/../"; 
$ENV{PATH} = "$Bin:$ENV{PATH}";  # to use local version of pod2html


# forward the @ARGV
system "$Bin/pod2hpp @ARGV $Bin/../swish.conf";
#unlink "$Bin/../pod2html-dircache";
#unlink "$Bin/../pod2html-itemcache";

