Tell Automake to include an external archiving/linking program. This patch resolves the following warning on Fedora 18:
automake: warnings are treated as errors /usr/share/automake-1.12/am/ltlibrary.am: warning: 'libHBAAPI.la': linking libtool libraries using a non-POSIX /usr/share/automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 'configure.ac' Makefile.am:1: while processing Libtool library 'libHBAAPI.la' Signed-off-by: Robert Love <[email protected]> --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 18946ae..04bfd1d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,6 @@ AC_INIT([libHBAAPI], [2.2.8], [[email protected]]) + +AM_PROG_AR AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AC_PROG_CC _______________________________________________ fcoe-devel mailing list [email protected] http://lists.open-fcoe.org/mailman/listinfo/fcoe-devel
