mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-22 04:41:21 +03:00
Fixes for nano-regress and regress fix on nano.c for compilation with slang
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4381 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
86988b5026
commit
97ba02d4f1
@ -16,7 +16,8 @@ foreach my $name (@combos) {
|
|||||||
my @args = @$name;
|
my @args = @$name;
|
||||||
my $pct = $i / $#combos * 100;
|
my $pct = $i / $#combos * 100;
|
||||||
printf "Trying with options: @args, %d%% done...\n", $pct;
|
printf "Trying with options: @args, %d%% done...\n", $pct;
|
||||||
if (system "(./configure @args && make clean all) >/dev/null 2>&1") {
|
system("(./configure @args && make clean all) >/dev/null 2>&1");
|
||||||
|
if ($? != 0) {
|
||||||
print "Build failed for args: @args\n";
|
print "Build failed for args: @args\n";
|
||||||
print "Try running make to reproduce\n";
|
print "Try running make to reproduce\n";
|
||||||
exit(1);
|
exit(1);
|
||||||
|
@ -1615,9 +1615,7 @@ int do_input(bool *meta_key, bool *func_key, bool *s_or_t, bool
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#ifndef NANO_TINY
|
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
*finished = TRUE;
|
*finished = TRUE;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user