From patchwork Thu Apr 17 05:26:19 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 339782 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id E23C11400AC for ; Thu, 17 Apr 2014 15:26:32 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 93A888BF09; Thu, 17 Apr 2014 05:26:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Kzd9zxRfCQD9; Thu, 17 Apr 2014 05:26:28 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id D0B838BEE6; Thu, 17 Apr 2014 05:26:28 +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 29C2E1CEAAD for ; Thu, 17 Apr 2014 05:26:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 2705487BD4 for ; Thu, 17 Apr 2014 05:26:28 +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 BG9zBBgJb8pb for ; Thu, 17 Apr 2014 05:26:26 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by hemlock.osuosl.org (Postfix) with ESMTPS id A341387BE5 for ; Thu, 17 Apr 2014 05:26:26 +0000 (UTC) Received: from fwd06.aul.t-online.de (fwd06.aul.t-online.de [172.20.26.150]) by mailout04.t-online.de (Postfix) with SMTP id 58EF33EBEE1 for ; Thu, 17 Apr 2014 07:25:50 +0200 (CEST) Received: from fli4l.lan.fli4l (bLC6ZEZ6Zh-hAbSqgsIkiBGGsPVp0r-M1T6ZagmGwVzYnFaKSFpZeFALB5b3dJzgQ1@[79.247.134.244]) by fwd06.t-online.de with esmtp id 1Waeq6-1RNzg80; Thu, 17 Apr 2014 07:26:22 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:38662) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1Waeq6-0005Sa-4e; Thu, 17 Apr 2014 07:26:22 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Thu, 17 Apr 2014 07:26:19 +0200 Message-Id: <1397712379-3474-1-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 X-ID: bLC6ZEZ6Zh-hAbSqgsIkiBGGsPVp0r-M1T6ZagmGwVzYnFaKSFpZeFALB5b3dJzgQ1 X-TOI-MSGID: a6e5121d-dfe0-4748-82ae-749854c7fcd2 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v2 1/1] xbmc: Fix compile error with missing host-gettext 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 autoreconf -vif lib/cpluff autoreconf: Entering directory `lib/cpluff' autoreconf: running: autopoint --force Can't exec "autopoint": No such file or directory at /home/buildroot/output/host/usr/share/autoconf/Autom4te/FileUtils.pm line 345. autoreconf: failed to run autopoint: No such file or directory autoreconf: autopoint is needed because this package uses Gettext make[1]: *** [lib/cpluff/configure] Error 1 Signed-off-by: Bernd Kuhls --- v2: Use AUTOPOINT=/bin/true instead of depending on host-gettext (Thomas) v1: http://patchwork.ozlabs.org/patch/338691/ package/xbmc/xbmc.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk index 7453db5..1bfc17d 100644 --- a/package/xbmc/xbmc.mk +++ b/package/xbmc/xbmc.mk @@ -129,7 +129,7 @@ endif # Add HOST_DIR to PATH for codegenerator.mk to find swig define XBMC_BOOTSTRAP - cd $(@D) && PATH=$(BR_PATH) ./bootstrap + cd $(@D) && PATH=$(BR_PATH) AUTOPOINT=/bin/true ./bootstrap endef XBMC_PRE_CONFIGURE_HOOKS += XBMC_BOOTSTRAP