diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-02-16 00:30:25 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-02-27 20:55:39 +0100 |
commit | 99d90fc102f4fbcc63b106f817b023687926a9e2 (patch) | |
tree | 60e9066285e6f756c99729c3dbe71973917ab19f | |
parent | 9322c6822f3c285212a07f38562c3d6425464e45 (diff) | |
download | guix-99d90fc102f4fbcc63b106f817b023687926a9e2.tar guix-99d90fc102f4fbcc63b106f817b023687926a9e2.tar.gz |
gnu: guile-static: Change `name' field.
* gnu/packages/make-bootstrap.scm (%guile-static): Add `name' field with
`-static' suffix.
-rw-r--r-- | gnu/packages/make-bootstrap.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm index 218f5a8e25..3bb926bd36 100644 --- a/gnu/packages/make-bootstrap.scm +++ b/gnu/packages/make-bootstrap.scm @@ -407,6 +407,7 @@ ;; mounted. '(#:configure-flags '("CPPFLAGS=-DUSE_LIBC_PRIVATES"))))) (guile (package (inherit guile-2.0) + (name (string-append (package-name guile-2.0) "-static")) (inputs `(("patch/relocatable" ,(search-patch "guile-relocatable.patch")) |