mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 08:50:00 -04:00
Use a POSIX shell in bin/tests/system/ifconfig.sh
Some non-POSIX shells, like /bin/csh on FreeBSD, are unable to execute
the config.guess file:
+ /bin/csh /var/tmp/gitlab_runner/builds/YdCaoq4b/0/mnowak/bind9/config.guess
timestamp=2018-02-24: Command not found.
me=config.guess: Command not found.
Unmatched '"'.
When ./configure is run, it attempts to locate a POSIX-compliant shell.
Use the result of that search in the bin/tests/system/ifconfig.sh
script.
This commit is contained in:
parent
246324fc8e
commit
a0426e0466
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
top_srcdir=@abs_top_srcdir@
|
||||
|
||||
sys=$($SHELL "$top_srcdir/config.guess")
|
||||
sys=$(@SHELL@ "$top_srcdir/config.guess")
|
||||
|
||||
use_ip=
|
||||
case "$sys" in
|
||||
|
|
|
|||
Loading…
Reference in a new issue