The configure script wasn't setting aux_srcdir correctly, causing Makefiles to look for libtool files in the builder's home directory instead of in the fedfs-utils top-level directory.
Signed-off-by: Chuck Lever <[email protected]> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 7e304ce..e07f108 100644 --- a/configure.ac +++ b/configure.ac @@ -28,7 +28,7 @@ AC_PREREQ([2.65]) AC_INIT([fedfs-utils], [0.10-devel], [[email protected]]) -AC_CONFIG_SRCDIR([src]) +AC_CANONICAL_BUILD([]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) _______________________________________________ fedfs-utils-devel mailing list [email protected] https://oss.oracle.com/mailman/listinfo/fedfs-utils-devel
