diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-01-02 23:40:56 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-01-02 23:40:56 +0100 |
commit | 2f8a123ed32eba2d63822327f86eadfba2c12143 (patch) | |
tree | 44e62858c8acffc702d85b87d061b4ea25ad6032 /distro/packages/autotools.scm | |
parent | feddc16c70d8271425563ceea9ca59c274279d0d (diff) | |
download | patches-2f8a123ed32eba2d63822327f86eadfba2c12143.tar patches-2f8a123ed32eba2d63822327f86eadfba2c12143.tar.gz |
distro: libtool: Add a "bin" output.
* distro/packages/autotools.scm (libtool): Add a "bin" output.
* distro/packages/base.scm (guile-final): Remove comment about retained
dependency.
Diffstat (limited to 'distro/packages/autotools.scm')
-rw-r--r-- | distro/packages/autotools.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/distro/packages/autotools.scm b/distro/packages/autotools.scm index 171855b937..32e50a5b12 100644 --- a/distro/packages/autotools.scm +++ b/distro/packages/autotools.scm @@ -1,6 +1,6 @@ ;;; Guix --- Nix package management from Guile. -*- coding: utf-8 -*- ;;; Copyright (C) 2012 Nikita Karetnikov <nikita@karetnikov.org> -;;; Copyright (C) 2012 Ludovic Courtès <ludo@gnu.org> +;;; Copyright (C) 2012, 2013 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of Guix. ;;; @@ -99,6 +99,13 @@ Standards. Automake requires the use of Autoconf.") (build-system gnu-build-system) (native-inputs `(("m4" ,m4) ("perl" ,perl))) + + ;; Separate binaries from the rest. During bootstrap, only ltdl is + ;; used; not depending on the binaries allows us to avoid retaining + ;; a reference to the bootstrap bash. + (outputs '("bin" ; libtoolize, libtool, etc. + "out")) ; libltdl.so, ltdl.h, etc. + (arguments `(#:patches (list (assoc-ref %build-inputs "patch/skip-tests")) #:phases (alist-cons-before |