Update travis for autotools

This commit is contained in:
Michael Stapelberg
2016-10-16 18:03:09 +02:00
parent 05e5901bca
commit ca98c7e614
7 changed files with 24 additions and 17 deletions

View File

@ -29,13 +29,13 @@ my $binary_spelling_exceptions = {
'betwen' => 1, # asan_flags.inc contains this spelling error.
};
my @binaries = qw(
i3
i3-config-wizard/i3-config-wizard
i3-dump-log/i3-dump-log
i3-input/i3-input
i3-msg/i3-msg
i3-nagbar/i3-nagbar
i3bar/i3bar
build/i3
build/i3-config-wizard/i3-config-wizard
build/i3-dump-log/i3-dump-log
build/i3-input/i3-input
build/i3-msg/i3-msg
build/i3-nagbar/i3-nagbar
build/i3bar/i3bar
);
for my $binary (@binaries) {
check_spelling(slurp($binary), $binary_spelling_exceptions, sub {
@ -50,7 +50,7 @@ for my $binary (@binaries) {
my $manpage_spelling_exceptions = {
};
for my $name (glob('man/*.1')) {
for my $name (glob('build/man/*.1')) {
for my $line (split(/\n/, slurp($name))) {
next if $line =~ /^\.\\\"/o;
check_spelling($line, $manpage_spelling_exceptions, sub {