From 16142b3c14b4d913fd941a96fff12d598cb4a1d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 1 May 2015 22:05:10 +0200 Subject: [PATCH] build-system/gnu: Adjust to removal of a "bin" output for Libtool. * guix/build-system/gnu.scm (dist-package): Change libtool:bin input to just libtool. --- guix/build-system/gnu.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm index 3ccdef1328..a383c8c75f 100644 --- a/guix/build-system/gnu.scm +++ b/guix/build-system/gnu.scm @@ -206,7 +206,7 @@ (define* (dist-package p source) (module-ref (resolve-interface module) var)))) `(("autoconf" ,(ref '(gnu packages autotools) 'autoconf)) ("automake" ,(ref '(gnu packages autotools) 'automake)) - ("libtool" ,(ref '(gnu packages autotools) 'libtool) "bin") + ("libtool" ,(ref '(gnu packages autotools) 'libtool)) ("gettext" ,(ref '(gnu packages gettext) 'gnu-gettext)) ("texinfo" ,(ref '(gnu packages texinfo) 'texinfo))))))))