File hbalinux-automake.diff of Package libhbalinux2
From ffa9f646bc594eb3eea997d90196fcb4ce90d6d1 Mon Sep 17 00:00:00 2001
From: Hannes Reinecke <hare@suse.de>
Date: Fri, 13 Sep 2013 08:30:28 +0200
Subject: [PATCH] Fixup automake failure
automake >= 1.12 wants AM_PROG_AR, and because this project uses
-Werror the build will fail.
Signed-off-by: Jan Engelhard <jengelh@inai.de>
Signed-off-by: Hannes Reinecke <hare@suse.de>
diff --git a/configure.ac b/configure.ac
index 3a8ae4c..5a1b5e7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,8 +3,9 @@ AC_INIT([libhbalinux], [1.0.16], [fcoe-devel@open-fcoe.org])
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
-AC_PROG_LIBTOOL
AC_PROG_CC
+AM_PROG_AR
+LT_INIT
PKG_CHECK_MODULES(PCIACCESS, pciaccess)
AC_SUBST(PCIACCESS_CFLAGS)