From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55081) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hkQRc-0005cQ-2O for guix-patches@gnu.org; Mon, 08 Jul 2019 06:00:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hkQRa-0003H3-RH for guix-patches@gnu.org; Mon, 08 Jul 2019 06:00:24 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49066) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hkQRa-0003Gy-Ly for guix-patches@gnu.org; Mon, 08 Jul 2019 06:00:22 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hkQRY-0004vx-2h for guix-patches@gnu.org; Mon, 08 Jul 2019 06:00:20 -0400 Subject: [bug#36477] [PATCH 24/31] gnu: xmlto: Fix cross-compilation. Resent-Message-ID: From: Mathieu Othacehe Date: Mon, 8 Jul 2019 11:59:06 +0200 Message-Id: <20190708095913.3460-25-m.othacehe@gmail.com> In-Reply-To: <20190708095913.3460-1-m.othacehe@gmail.com> References: <20190708095913.3460-1-m.othacehe@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36477@debbugs.gnu.org Cc: Mathieu Othacehe * gnu/packages/xml.scm (xmlto)[inputs]: Move util-linux from here ... [native-inputs]: ... to here. --- gnu/packages/xml.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 5fefa2c1dc..5239070b1c 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -915,9 +915,10 @@ code for classes that correspond to data structures defined by XMLSchema.") (assoc-ref %build-inputs "util-linux") "/bin/getopt")))) + (native-inputs + `(("util-linux" ,util-linux))) ; for 'getopt' (inputs - `(("util-linux" ,util-linux) ; for 'getopt' - ("libxml2" ,libxml2) ; for 'xmllint' + `(("libxml2" ,libxml2) ; for 'xmllint' ("libxslt" ,libxslt))) ; for 'xsltproc' (home-page "http://cyberelk.net/tim/software/xmlto/") (synopsis "Front-end to an XSL toolchain") -- 2.17.1