From patchwork Tue Jun 21 12:16:01 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Baruch Siach X-Patchwork-Id: 638664 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3rYmsr4PTvz9sDG for ; Tue, 21 Jun 2016 22:16:16 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 0689189146; Tue, 21 Jun 2016 12:16:15 +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 xX0u2xItJsWW; Tue, 21 Jun 2016 12:16:14 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id EE4F588868; Tue, 21 Jun 2016 12:16:13 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 801C51C1E9B for ; Tue, 21 Jun 2016 12:16:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 7A6648B1F2 for ; Tue, 21 Jun 2016 12:16:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 72hr93r3jVK5 for ; Tue, 21 Jun 2016 12:16:10 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mx.tkos.co.il (guitar.tcltek.co.il [192.115.133.116]) by whitealder.osuosl.org (Postfix) with ESMTPS id 7D12F8B202 for ; Tue, 21 Jun 2016 12:16:10 +0000 (UTC) Received: from tarshish.tkos.co.il (unknown [10.0.8.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mx.tkos.co.il (Postfix) with ESMTPSA id 841B644011A; Tue, 21 Jun 2016 15:16:07 +0300 (IDT) From: Baruch Siach To: buildroot@busybox.net Date: Tue, 21 Jun 2016 15:16:01 +0300 Message-Id: X-Mailer: git-send-email 2.8.1 Subject: [Buildroot] [PATCH] fwup: disable documentation build X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" Documentation build with help2man relies on the output of running 'fwup --help'. That obviously can't work with cross compilation. Fixes: http://autobuild.buildroot.net/results/bdd/bdd8137973c37824f6aa9261ee307f6ed21b9166/ http://autobuild.buildroot.net/results/96a/96a53b3ec666bd09f09c8a3e5b31eff73e3dd0fa/ http://autobuild.buildroot.net/results/e0b/e0bcfaf9dd36d4992e507d18afeb1cec56048987/ Cc: Frank Hunleth Signed-off-by: Baruch Siach Tested-by: Frank Hunleth --- package/fwup/fwup.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/fwup/fwup.mk b/package/fwup/fwup.mk index 7b007e1a9c8a..0a23856048b3 100644 --- a/package/fwup/fwup.mk +++ b/package/fwup/fwup.mk @@ -10,6 +10,7 @@ FWUP_LICENSE = Apache-2.0 FWUP_LICENSE_FILES = LICENSE FWUP_DEPENDENCIES = libconfuse libarchive libsodium FWUP_AUTORECONF = YES +FWUP_CONF_ENV = ac_cv_path_HELP2MAN="" $(eval $(autotools-package)) $(eval $(host-autotools-package))