0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-22 09:41:54 +00:00

Configure: Fix lost suffix in bird.ctl

One of previous commits bacported from 2.0 removed suffix from bird.ctl
This commit is contained in:
Ondrej Zajicek (work) 2019-01-04 19:11:54 +01:00
parent c30f00d4a8
commit a93684b2d4

View File

@ -114,7 +114,7 @@ if test "$enable_debug" = yes ; then
CONTROL_SOCKET="bird$SUFFIX.ctl"
else
CONFIG_FILE="\$(sysconfdir)/bird$SUFFIX.conf"
CONTROL_SOCKET="\$(runstatedir)/bird.ctl"
CONTROL_SOCKET="\$(runstatedir)/bird$SUFFIX.ctl"
fi
AC_SUBST([CONFIG_FILE])
AC_SUBST([CONTROL_SOCKET])