From patchwork Sun Dec 9 14:35:02 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 204703 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 7883B2C01FA for ; Mon, 10 Dec 2012 01:35:15 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id E68F81001C1; Sun, 9 Dec 2012 14:35:05 +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 FuTObGTxqEOE; Sun, 9 Dec 2012 14:35:04 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id F3A4710030F; Sun, 9 Dec 2012 14:35:03 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id DBE498F74B for ; Sun, 9 Dec 2012 14:35:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 26F188193D for ; Sun, 9 Dec 2012 14:35: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 rtueJLy+TshR for ; Sun, 9 Dec 2012 14:35:11 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id C53B48193A for ; Sun, 9 Dec 2012 14:35:10 +0000 (UTC) Received: from asgard (host201.201-252-64.telecom.net.ar [201.252.64.201]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id qB9EZ3dO010925 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 9 Dec 2012 14:35:06 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1355063707; bh=ZqCUmwlaOgomZW7or3XhA4+LnmNo9JoLHoT5kTxITyA=; h=From:To:Cc:Subject:Date; b=ouyBrfucfZZZByAt0L2ESv7FmZ59DZu1Hs895pgcaJ6TE9ZwNgs3oaddP4jBQ5qRy Jsa1V8ekWMmUGZUgYpjpE1cqiROOZBuBkOU9Kd7v4dgQElFPdPN7CjDRNe4sTLoQZ6 JjwBoXVVfE2SvtBLQhf1npg6jqy+wGWyZiPdpyrc= Received: by asgard (sSMTP sendmail emulation); Sun, 09 Dec 2012 11:35:02 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sun, 9 Dec 2012 11:35:02 -0300 Message-Id: <1355063702-4716-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] sane-backends: fix documentation build failure 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 Disable documentation build, it seems to break with older texlive/kpathsea versions, fixes: http://autobuild.buildroot.net/results/44327b543d8918929bf252c5284e8691fda87fd0/ Also switch to alioth mirror since the original tarball is gone from the regular site when 1.0.23 was released. Signed-off-by: Gustavo Zacarias --- package/sane-backends/sane-backends.mk | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/package/sane-backends/sane-backends.mk b/package/sane-backends/sane-backends.mk index 56ce82d..496dca4 100644 --- a/package/sane-backends/sane-backends.mk +++ b/package/sane-backends/sane-backends.mk @@ -5,7 +5,7 @@ ############################################################# SANE_BACKENDS_VERSION = 1.0.22 SANE_BACKENDS_SOURCE = sane-backends-$(SANE_BACKENDS_VERSION).tar.gz -SANE_BACKENDS_SITE = ftp://ftp2.sane-project.org/pub/sane/sane-backends-$(SANE_BACKENDS_VERSION) +SANE_BACKENDS_SITE = https://alioth.debian.org/frs/download.php/3503 ifeq ($(BR2_PACKAGE_LIBUSB),y) SANE_BACKENDS_DEPENDENCIES += libusb @@ -37,4 +37,10 @@ else SANE_BACKENDS_CONF_OPT += --without-snmp endif +define SANE_BACKENDS_DISABLE_DOCS + $(SED) 's/ doc//' $(@D)/Makefile +endef + +SANE_BACKENDS_POST_CONFIGURE_HOOKS += SANE_BACKENDS_DISABLE_DOCS + $(eval $(autotools-package))