diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2019-01-04 19:11:54 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2019-01-04 19:11:54 +0100 |
commit | a93684b2d452d231315dde7fb1960cdd9f023802 (patch) | |
tree | 3c95a6bc84c088ba9279b8d351b42f0883198d80 | |
parent | c30f00d4a803906bfd09e47874b922a3525855c7 (diff) |
Configure: Fix lost suffix in bird.ctl
One of previous commits bacported from 2.0 removed suffix from bird.ctl
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 67acdab0..5fbf9136 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) |