diff options
author | John Darrington <john@darrington.wattle.id.au> | 2013-12-17 20:33:26 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-12-17 21:28:07 +0100 |
commit | db6190899ea15d3b66d6b2d82bdeaee442423100 (patch) | |
tree | 84ca4ed404ea6fdb6c127d940f9cb73f2c8431b8 /gnu/packages/guile.scm | |
parent | f22e0e264e400b69fc91509c676f9069b7cdbc2e (diff) | |
download | patches-db6190899ea15d3b66d6b2d82bdeaee442423100.tar patches-db6190899ea15d3b66d6b2d82bdeaee442423100.tar.gz |
gnu: gnu-build-system: Add CC_FOR_BUILD to configure flags.
* guix/build/gnu-build-system.scm: Add new configure flag: CC_FOR_BUILD=gcc
* gnu/packages/gnupg.scm, gnu/packages/guile.scm, gnu/packages/make-bootstrap.scm:
remove CC_FOR_BUILD from these package descriptions.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/guile.scm')
-rw-r--r-- | gnu/packages/guile.scm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 40d9ae7df8..3dbb5d8429 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -150,11 +150,7 @@ without requiring the source code to be rewritten.") (substitute* "module/ice-9/popen.scm" (("/bin/sh") (string-append bash "/bin/bash"))))) - %standard-phases) - - ,@(if (%current-target-system) - '(#:configure-flags '("CC_FOR_BUILD=gcc")) - '()))) + %standard-phases))) (native-search-paths (list (search-path-specification |