diff options
| author | Quentin Young <qlyoung@users.noreply.github.com> | 2021-11-30 00:17:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-30 00:17:28 -0500 |
| commit | 23b2f11a47163c589f261b9f98934bdab9eb167b (patch) | |
| tree | a2438be1e4aa16be6e4c6ec157d46c745a15a672 /configure.ac | |
| parent | 14fb032999349d2e9b5d39a938a285f9b3fab6d0 (diff) | |
| parent | 99d0e85479df6c310e99e1ddb603aa3097ef31cb (diff) | |
Merge pull request #9798 from abuibrahim/master
fix broken northbound confd
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 42b3b659a7..c153e4c261 100644 --- a/configure.ac +++ b/configure.ac @@ -1915,6 +1915,7 @@ if test "$enable_confd" != "" -a "$enable_confd" != "no"; then if test "$CONFD" = "/bin/false"; then AC_MSG_ERROR([confd was not found on your system.])] fi + AC_CHECK_PROG([CONFDC], [confdc], [confdc], [/bin/false], "${enable_confd}/bin") CONFD_CFLAGS="-I${enable_confd}/include -L${enable_confd}/lib" AC_SUBST([CONFD_CFLAGS]) CONFD_LIBS="-lconfd" |
