mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 12:12:11 -04:00
Fix out-of-tree tests
The change to `testsock.pl` in commit 258a896a broke the system
tests in out-of-tree builds because `ifconfig.sh.in` is not
copied to the worktree. Use `ifconfig.sh` instead.
This commit is contained in:
parent
44235cd2cf
commit
2a0b81d6da
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ my @ids;
|
|||
if ($id != 0) {
|
||||
@ids = ($id);
|
||||
} else {
|
||||
my $fn = "ifconfig.sh.in";
|
||||
my $fn = "ifconfig.sh";
|
||||
open FH, "< $fn" or die "open < $fn: $!\n";
|
||||
while (<FH>) {
|
||||
@ids = (1..$1)
|
||||
|
|
|
|||
Loading…
Reference in a new issue