Stylize consistently, add more Emacs mode goodness

This commit is contained in:
Tor Lillqvist 2011-05-31 10:00:39 +03:00
parent 90a9bed187
commit 471fd2e4e8

View File

@ -16,20 +16,18 @@ sub sanity_checks($)
{
my $system = shift;
my @path = split (':', $ENV{'PATH'});
my %required = (
my %required =
(
'pkg-config' => "pkg-config is required to be installed",
'autoconf' => "autoconf is required",
'aclocal' => "aclocal is required",
# 'knurdle' => 'please knurdle me test'
);
my $exe_ext = '';
$exe_ext = ".exe" if ($system =~ m/CYGWIN/);
for my $elem (@path) {
# print "check $elem\n";
for my $app (keys %required) {
if (-f "$elem/$app$exe_ext") {
# print "removing $app - found in $elem/$app\n";
delete $required{$app};
}
}
@ -63,13 +61,12 @@ sub read_args($)
print " $opt\n";
}
}
}
else {
} else {
push @lst, $_;
}
}
close ($fh);
# print "read args from file '$file': @lst\n";
# print "read args from file '$file': @lst\n";
return @lst;
}
@ -149,6 +146,8 @@ if (defined $ENV{NOCONFIGURE}) {
}
# Local Variables:
# mode: perl
# cperl-indent-level: 4
# tab-width: 4
# indent-tabs-mode: nil
# End: