From patchwork Fri Mar 29 14:21:10 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicolas Dichtel X-Patchwork-Id: 232433 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 8182F2C009F for ; Sat, 30 Mar 2013 01:21:28 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753810Ab3C2OV0 (ORCPT ); Fri, 29 Mar 2013 10:21:26 -0400 Received: from 33.106-14-84.ripe.coltfrance.com ([84.14.106.33]:39627 "EHLO proxy.6wind.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753598Ab3C2OVZ (ORCPT ); Fri, 29 Mar 2013 10:21:25 -0400 Received: from schnaps.dev.6wind.com (unknown [10.16.0.249]) by proxy.6wind.com (Postfix) with ESMTPS id 7E6085985D; Fri, 29 Mar 2013 14:49:22 +0100 (CET) Received: from root by schnaps.dev.6wind.com with local (Exim 4.80) (envelope-from ) id 1ULaBI-0001v1-3J; Fri, 29 Mar 2013 15:21:24 +0100 From: Nicolas Dichtel To: pablo@netfilter.org Cc: netfilter-devel@vger.kernel.org, Nicolas Dichtel Subject: [PATCH iptables] nfnl_osf: use the right nfnetlink lib Date: Fri, 29 Mar 2013 15:21:10 +0100 Message-Id: <1364566870-7320-1-git-send-email-nicolas.dichtel@6wind.com> X-Mailer: git-send-email 1.8.0.1 Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org If the user specify libnfnetlink_LIBS during the configure, we must use it. Signed-off-by: Nicolas Dichtel --- utils/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/Makefile.am b/utils/Makefile.am index f1bbfc5..8a85396 100644 --- a/utils/Makefile.am +++ b/utils/Makefile.am @@ -7,4 +7,4 @@ AM_CPPFLAGS = ${regular_CPPFLAGS} -I${top_builddir}/include \ sbin_PROGRAMS = nfnl_osf pkgdata_DATA = pf.os -nfnl_osf_LDADD = -lnfnetlink +nfnl_osf_LDADD = ${libnfnetlink_LIBS} -lnfnetlink