From patchwork Tue Jun 19 01:18:32 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Danomi Manchego X-Patchwork-Id: 165628 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 15116B700B for ; Tue, 19 Jun 2012 11:18:42 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 639B131DA3; Tue, 19 Jun 2012 01:18:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id AQNv6V1zeY1q; Tue, 19 Jun 2012 01:18:39 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id BFF5C31DAE; Tue, 19 Jun 2012 01:18:38 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 7FA288F753 for ; Tue, 19 Jun 2012 01:18:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 73139A004B for ; Tue, 19 Jun 2012 01:18:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jtFYKsEglU2i for ; Tue, 19 Jun 2012 01:18:37 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from qmta03.westchester.pa.mail.comcast.net (qmta03.westchester.pa.mail.comcast.net [76.96.62.32]) by hemlock.osuosl.org (Postfix) with ESMTP id F3F75A0036 for ; Tue, 19 Jun 2012 01:18:36 +0000 (UTC) Received: from omta04.westchester.pa.mail.comcast.net ([76.96.62.35]) by qmta03.westchester.pa.mail.comcast.net with comcast id PzZ41j00L0ldTLk531Jc0b; Tue, 19 Jun 2012 01:18:36 +0000 Received: from localhost.localdomain ([68.37.48.40]) by omta04.westchester.pa.mail.comcast.net with comcast id Q1Jb1j00q0s1VyU3Q1JbEt; Tue, 19 Jun 2012 01:18:36 +0000 From: Danomi Manchego To: buildroot@uclibc.org Date: Mon, 18 Jun 2012 21:18:32 -0400 Message-Id: <1340068712-10822-1-git-send-email-danomimanchego123@gmail.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH] xinetd: explicitly specify AR in build step X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net xinetd's configure does not set up an AR variable, and there are no libtool files to autoreconfigure. So instead, lets pass in AR during the build. Signed-off-by: Danomi Manchego --- package/xinetd/xinetd.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/xinetd/xinetd.mk b/package/xinetd/xinetd.mk index 6a69a55..e8fc037 100644 --- a/package/xinetd/xinetd.mk +++ b/package/xinetd/xinetd.mk @@ -11,4 +11,6 @@ ifneq ($(BR2_INET_RPC),y) XINETD_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -DNO_RPC" endif +XINETD_MAKE_OPT = AR="$(TARGET_AR)" + $(eval $(call AUTOTARGETS))