Commit 227d6a93 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Make mkfiles.pl work with fipscanisteronly.

parent f6e76a67
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
@@ -84,7 +84,10 @@ my @dirs = (


%top;
%top;


my $fipscanisteronly = 0;

foreach (@dirs) {
foreach (@dirs) {
	next if ($fipscanisteronly && !(-d $_));
	&files_dir ($_, "Makefile");
	&files_dir ($_, "Makefile");
}
}


@@ -150,4 +153,8 @@ if ($dir eq "." && defined($sym{"BUILDENV"}))
print "RELATIVE_DIRECTORY=\n";
print "RELATIVE_DIRECTORY=\n";


close (IN);
close (IN);
if ($dir eq "." && $sym{CONFIGURE_ARGS} =~ /fipscanisteronly/)
	{
	$fipscanisteronly = 1;
	}
}
}