[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: libtool: Add libltdl to native-inputs.
From: |
Ricardo Wurmus |
Subject: |
01/01: gnu: libtool: Add libltdl to native-inputs. |
Date: |
Thu, 15 Mar 2018 07:03:17 -0400 (EDT) |
rekado pushed a commit to branch core-updates
in repository guix.
commit 2b4e5568508a85c47b602580a6b6930f3bf8bdec
Author: Ricardo Wurmus <address@hidden>
Date: Thu Mar 15 12:02:04 2018 +0100
gnu: libtool: Add libltdl to native-inputs.
* gnu/packages/autotools.scm (libtool)[native-inputs]: Add libltdl to fix
one
failing test.
---
gnu/packages/autotools.scm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm
index e02de1a..4a16a12 100644
--- a/gnu/packages/autotools.scm
+++ b/gnu/packages/autotools.scm
@@ -8,6 +8,7 @@
;;; Copyright © 2017 ng0 <address@hidden>
;;; Copyright © 2017 Efraim Flashner <address@hidden>
;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
+;;; Copyright © 2018 Ricardo Wurmus <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -339,6 +340,9 @@ Makefile, simplifying the entire process for the
developer.")
(propagated-inputs `(("m4" ,m4)))
(native-inputs `(("m4" ,m4)
("perl" ,perl)
+ ;; XXX: this shouldn't be necessary, but without it test
+ ;; 102 fails because it cannot find ltdl/libltdl.la.
+ ("libltdl" ,libltdl)
("help2man" ,help2man) ;because we modify ltmain.sh
("automake" ,automake) ;some tests rely on 'aclocal'
("autoconf" ,autoconf-wrapper))) ;others on 'autom4te'