#!/bin/sh
echo Perl2Exe Binary Distribution Setup

# configure perl
if [ -d perl5 ] ; then
  cd perl5
  ./bin/perl5.14.2 setup_perl.pl `pwd` yes
  cd ..
  echo
  echo Please add the following to your PATH:
  echo `pwd`
  echo `pwd`/perl5/bin
  echo
else
  echo
  echo Please add the following to your PATH:
  echo `pwd`
  echo
fi

