###	SPAR <http://www.cpan.org/scripts/>
###	3	755	1067451881	1211218113	is_relevant.pl
# When testing an already installed version, this test doesn't make sence.
substr +($Mpp::makepp_dir = $makepp_path), -7, 7, '';
-f "$Mpp::makepp_dir/install.pl";
###	35	644	1164353916	1502476450	makepp_test_script.pl
my $cwd = cwd;

my $havepod = -d "$Mpp::makepp_dir/pod/"; # complete distro?
my $haveman = $havepod && eval 'use Pod::Man; 1'; # broken on StrawberryPerl V5.8.9
my $haveutf8 = $] > 5.008 && $havepod; # no print wide char warning

chdir $Mpp::makepp_dir;		# install.pl and config.pl are to be run here
my $cmd = "$Mpp::makepp_dir/install.pl";
eval {
  system_intabort \$cmd, PERL, $cmd, "$cwd/instbin", "$cwd/instshare",
    $haveman ? "$cwd/instman" : 'none',
    $haveutf8 ? "$cwd/insthtml" : 'none',
    'none';
  die if $haveman && ! <$cwd/instman/man1/makepp.?{,.gz}>; # ? makes this a wildcard
  die if $haveutf8 && ! -f "$cwd/insthtml/index.html";

  $cmd = "$Mpp::makepp_dir/config.pl";
  system_intabort \$cmd, PERL, $cmd, "--makefile=$cwd/config.mk", '-p', $cwd,
    $haveman ? "-m$cwd/confman" : '-mnone',
    $haveutf8 ? "-h$cwd/confhtml" : '-hnone';
  makepp "-f$cwd/config.mk", '--dont-build=all', 'install';
  die if $haveman && ! <$cwd/confman/man1/makepp.?{,.gz}>;
  die if $haveutf8 && ! -f "$cwd/confhtml/index.html";

  chdir $cwd;
  $cmd = is_windows < 1 ? 'bin/mpp' : 'bin\mpp';
  system_intabort \$cmd, $cmd, '--version'; # Can it start, loading some of our modules?
  substr $cmd, 0, 0, 'inst';
  system_intabort \$cmd, $cmd, '--version';
};
if( $@ ) {
  chdir $cwd;
  die $@;
}
1;
###	D	755	1164319650	1079870636	.makepp/
###	3	644	1164319650	1190056091	.makepp/log
This is a dummy log present so as to satisfy makepp's test harness.

N_FILES000