From patchwork Tue Mar 4 16:30:11 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 326387 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 31F442C00B3 for ; Wed, 5 Mar 2014 03:30:29 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 6418A9129E; Tue, 4 Mar 2014 16:30:28 +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 aprb4EG6mVKI; Tue, 4 Mar 2014 16:30:27 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id DC85190E80; Tue, 4 Mar 2014 16:30:26 +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 7124A1BF862 for ; Tue, 4 Mar 2014 16:30:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 6D12390E80 for ; Tue, 4 Mar 2014 16:30:26 +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 tJ6Jz6DVaBsP for ; Tue, 4 Mar 2014 16:30:25 +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 EF68E90E2C for ; Tue, 4 Mar 2014 16:30:24 +0000 (UTC) Received: from asgard (host208.190-225-89.telecom.net.ar [190.225.89.208]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.8/8.14.8) with ESMTP id s24GUH8c023708 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 4 Mar 2014 16:30:20 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1393950622; bh=b1fdRviZKdA/UAFwxzU1Vr7naMKBMAXu/vYG6kxfoDo=; h=From:To:Cc:Subject:Date; b=hFWiIQVPvrDuhJPnvO6aUVP63TUrtMmI7nyprgNuXeXjZGN5U4DMWLM7Iv7JEJWKE DEBmgUISOrXmaqWfWBmDtOz2X69iBDIqqfvvsLTGSSqYk4wO/xrsirT39aLDaujyrR Jg/KcLDfymRzv7IdT/6OAvRY91y7h2kgGDZdDwaI= Received: by asgard (sSMTP sendmail emulation); Tue, 04 Mar 2014 13:30:11 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Tue, 4 Mar 2014 13:30:11 -0300 Message-Id: <1393950611-6873-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.3.2 X-Virus-Scanned: clamav-milter 0.98.1 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] eudev: disable manpages 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 If host-libxslt or some libxslt is around (xsltproc) eudev will try to build manpages with it. Problem is docbook DTDs might not be around and things will break. We want no manpages anyway. Fixes: http://autobuild.buildroot.net/results/c4e/c4e920b16c57e79df979f00cceaea7c0483f043c/ Signed-off-by: Gustavo Zacarias --- package/eudev/eudev.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/eudev/eudev.mk b/package/eudev/eudev.mk index ffa413f..95aa1ce 100644 --- a/package/eudev/eudev.mk +++ b/package/eudev/eudev.mk @@ -15,6 +15,7 @@ EUDEV_AUTORECONF = YES EUDEV_CONF_ENV += LIBS=-lrt EUDEV_CONF_OPT = \ + --disable-manpages \ --sbindir=/sbin \ --with-rootlibdir=/lib \ --libexecdir=/lib \