diff options
author | Andrei Pavel <andrei@isc.org> | 2024-09-09 11:46:48 +0200 |
---|---|---|
committer | Andrei Pavel <andrei@isc.org> | 2024-09-09 11:46:48 +0200 |
commit | eee390d69fcb9e19f170b39311141fa146eae4bf (patch) | |
tree | 01b62a91ed9c94f86112d9291979ada7acce89eb /src/lib/dhcpsrv | |
parent | [#3566] changelog added (diff) | |
download | kea-eee390d69fcb9e19f170b39311141fa146eae4bf.tar.xz kea-eee390d69fcb9e19f170b39311141fa146eae4bf.zip |
[#3504] fix Kea not being able to find exec paths in custom sbindir
Diffstat (limited to 'src/lib/dhcpsrv')
-rw-r--r-- | src/lib/dhcpsrv/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dhcpsrv/Makefile.am b/src/lib/dhcpsrv/Makefile.am index 469a2c4efc..e56ed12bce 100644 --- a/src/lib/dhcpsrv/Makefile.am +++ b/src/lib/dhcpsrv/Makefile.am @@ -5,7 +5,7 @@ SUBDIRS = . testutils tests # DATA_DIR is the directory where to put default CSV files and the DHCPv6 # server ID file (i.e. the file where the server finds its DUID at startup). dhcp_data_dir = @localstatedir@/lib/@PACKAGE@ -kea_lfc_location = @prefix@/sbin/kea-lfc +kea_lfc_location = @sbindir@/kea-lfc AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib AM_CPPFLAGS += -DDHCP_DATA_DIR="\"$(dhcp_data_dir)\"" |