diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-05-01 22:05:10 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-05-02 22:16:06 +0200 |
commit | 16142b3c14b4d913fd941a96fff12d598cb4a1d6 (patch) | |
tree | 951ccf96644df548dea6ccadf2a5aed013736381 /guix/build-system/gnu.scm | |
parent | 2d2abb04f82f03f5d9e4f4fdce04c956805f0493 (diff) |
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.
Diffstat (limited to 'guix/build-system/gnu.scm')
-rw-r--r-- | guix/build-system/gnu.scm | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ runs `make distcheck' and whose result is one or more source tarballs." (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)))))))) |