From: Ondrej Zajicek (work) Date: Fri, 4 Jan 2019 18:11:54 +0000 (+0100) Subject: Configure: Fix lost suffix in bird.ctl X-Git-Tag: v1.6.5~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a93684b2d452d231315dde7fb1960cdd9f023802;p=thirdparty%2Fbird.git Configure: Fix lost suffix in bird.ctl One of previous commits bacported from 2.0 removed suffix from bird.ctl --- diff --git a/configure.ac b/configure.ac index 67acdab00..5fbf9136d 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])