diff options
author | Tomek Mrugalski <tomek@isc.org> | 2021-07-26 10:49:30 +0200 |
---|---|---|
committer | Tomek Mrugalski <tomek@isc.org> | 2021-07-26 12:17:04 +0200 |
commit | 8e3d4f24b76d9f9be412b2f82c0faa6475fb5330 (patch) | |
tree | 839b1a939afa244ec80f55b1dae28ce46585c79f /m4macros | |
parent | [#1077] add compile flags in YANG and NETCONF (diff) | |
download | kea-8e3d4f24b76d9f9be412b2f82c0faa6475fb5330.tar.xz kea-8e3d4f24b76d9f9be412b2f82c0faa6475fb5330.zip |
[#1077] Fixed *_LIBS variables
Diffstat (limited to 'm4macros')
-rw-r--r-- | m4macros/ax_find_library.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4macros/ax_find_library.m4 b/m4macros/ax_find_library.m4 index 6209409fe9..66d73571b8 100644 --- a/m4macros/ax_find_library.m4 +++ b/m4macros/ax_find_library.m4 @@ -93,7 +93,7 @@ AC_DEFUN([AX_FIND_LIBRARY], [ LIBRARY_INCLUDEDIR="-I${p}/include" fi - LIBRARY_LIBS="-L${i}/lib -Wl,-rpath=${i}/lib" + LIBRARY_LIBS="-L${p}/lib -Wl,-rpath=${p}/lib" for i in ${list_of_libraries}; do if test ! -f "${p}/lib/${i}"; then AC_MSG_WARN(["${library}" libraries not found in "${p}"]) |