diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-11-24 23:01:33 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-11-24 23:01:33 +0100 |
commit | 2e1f5bcac16b1109e04e565c7153f6bbeb5fff59 (patch) | |
tree | 31d9d338c05c26540115daee0de2b2ee42719364 | |
parent | aad560a56f7c5c9ea2bcf7c3e51973ef826f736f (diff) | |
download | patches-2e1f5bcac16b1109e04e565c7153f6bbeb5fff59.tar patches-2e1f5bcac16b1109e04e565c7153f6bbeb5fff59.tar.gz |
gnu: {binutils,bash,gnu-make}-final are private.
* gnu/packages/base.scm (binutils-final, bash-final, gnu-make-final):
Use 'define', not 'define-public'.
-rw-r--r-- | gnu/packages/base.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index e835b418b2..c1014f9087 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -882,7 +882,7 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%" ("gcc" ,gcc-boot0-wrapped) ,@(fold alist-delete %boot1-inputs '("libc" "gcc")))) -(define-public binutils-final +(define binutils-final (package-with-bootstrap-guile (package (inherit binutils) (arguments @@ -1020,7 +1020,7 @@ store.") ("ld-wrapper" ,ld-wrapper-boot3) ,@(alist-delete "gcc" %boot2-inputs))) -(define-public bash-final +(define bash-final ;; Link with `-static-libgcc' to make sure we don't retain a reference ;; to the bootstrap GCC. (package-with-bootstrap-guile @@ -1041,7 +1041,7 @@ store.") (current-source-location) #:guile %bootstrap-guile))) -(define-public gnu-make-final +(define gnu-make-final ;; The final GNU Make, which uses the final Guile. (package-with-bootstrap-guile (package-with-explicit-inputs gnu-make |