diff --git a/src/confd/src/confd/Makefile.am b/src/confd/src/confd/Makefile.am index a6a825e4..840a6eff 100644 --- a/src/confd/src/confd/Makefile.am +++ b/src/confd/src/confd/Makefile.am @@ -7,6 +7,6 @@ plugin_LTLIBRARIES = confd-plugin.la confd_plugin_la_CFLAGS = $(augeas_CFLAGS) $(jansson_CFLAGS) $(libite_CFLAGS) $(sysrepo_CFLAGS) $(CFLAGS) confd_plugin_la_LIBADD = $(augeas_LIBS) $(jansson_LIBS) $(libite_LIBS) $(sysrepo_LIBS) confd_plugin_la_LDFLAGS = -module -avoid-version -shared -confd_plugin_la_SOURCES = core.c core.h helpers.c helpers.h srx_module.c srx_module.h srx_val.c srx_val.h \ +confd_plugin_la_SOURCES = core.c core.h helpers.c helpers.h srx_val.c srx_val.h \ ietf-system.c ietf-interfaces.c systemv.c systemv.h ../lib/lyx.c ../lib/lyx.h dagger.c dagger.h \ - infix-dhcp.c + infix-dhcp.c ../lib/srx_module.c ../lib/srx_module.h diff --git a/src/confd/src/confd/core.c b/src/confd/src/confd/core.c index 1eeb5119..a98a5be4 100644 --- a/src/confd/src/confd/core.c +++ b/src/confd/src/confd/core.c @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: BSD-3-Clause */ #include "core.h" -#include "srx_module.h" +#include "../lib/srx_module.h" static struct confd confd; diff --git a/src/confd/src/confd/ietf-interfaces.c b/src/confd/src/confd/ietf-interfaces.c index 3275bf23..6294561c 100644 --- a/src/confd/src/confd/ietf-interfaces.c +++ b/src/confd/src/confd/ietf-interfaces.c @@ -9,7 +9,7 @@ #include "core.h" #include "dagger.h" #include "../lib/lyx.h" -#include "srx_module.h" +#include "../lib/srx_module.h" #include "srx_val.h" #define ERR_IFACE(_iface, _err, _fmt, ...) \ diff --git a/src/confd/src/confd/ietf-system.c b/src/confd/src/confd/ietf-system.c index a971bc8e..c9a0e001 100644 --- a/src/confd/src/confd/ietf-system.c +++ b/src/confd/src/confd/ietf-system.c @@ -9,7 +9,7 @@ #include "core.h" #include "../lib/lyx.h" -#include "srx_module.h" +#include "../lib/srx_module.h" #include "srx_val.h" #define CLOCK_PATH_ "/ietf-system:system-state/clock" diff --git a/src/confd/src/confd/infix-dhcp.c b/src/confd/src/confd/infix-dhcp.c index 3883b8ef..066a9171 100644 --- a/src/confd/src/confd/infix-dhcp.c +++ b/src/confd/src/confd/infix-dhcp.c @@ -9,7 +9,7 @@ #include "core.h" #include "../lib/lyx.h" -#include "srx_module.h" +#include "../lib/srx_module.h" #include "srx_val.h" static const struct srx_module_requirement infix_dhcp_reqs[] = { diff --git a/src/confd/src/confd/srx_module.c b/src/confd/src/lib/srx_module.c similarity index 100% rename from src/confd/src/confd/srx_module.c rename to src/confd/src/lib/srx_module.c diff --git a/src/confd/src/confd/srx_module.h b/src/confd/src/lib/srx_module.h similarity index 100% rename from src/confd/src/confd/srx_module.h rename to src/confd/src/lib/srx_module.h