mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: libtool: Add libltdl to native-inputs.
* gnu/packages/autotools.scm (libtool)[native-inputs]: Add libltdl to fix one failing test.
This commit is contained in:
parent
d57888a819
commit
2b4e556850
1 changed files with 4 additions and 0 deletions
|
@ -8,6 +8,7 @@
|
|||
;;; Copyright © 2017 ng0 <ng0@infotropique.org>
|
||||
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -339,6 +340,9 @@ (define-public libtool
|
|||
(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'
|
||||
|
|
Loading…
Reference in a new issue