diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-03-12 15:14:01 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-03-12 15:14:01 +0100 |
commit | ad1d03fcf0472c88c9f63e8126274320cb0a076e (patch) | |
tree | c6af7ad8529851257a9dc76a167edbdb967d59f9 | |
parent | 51158d83d86d9f969c52f7baf513160a8d9fbd78 (diff) | |
download | patches-ad1d03fcf0472c88c9f63e8126274320cb0a076e.tar patches-ad1d03fcf0472c88c9f63e8126274320cb0a076e.tar.gz |
build-system: minify: Do not import (ice-9 popen) in the build environment.
The (ice-9 popen) module should not be added to the imported-modules here,
because that depends on the Guile that is used on the host side.
* guix/build-system/minify.scm (%minify-build-system-modules): Remove import
of (ice-9 popen).
-rw-r--r-- | guix/build-system/minify.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/guix/build-system/minify.scm b/guix/build-system/minify.scm index af90a32f59..21d84a179a 100644 --- a/guix/build-system/minify.scm +++ b/guix/build-system/minify.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2017, 2018 Ricardo Wurmus <rekado@elephly.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -39,7 +39,6 @@ (define %minify-build-system-modules ;; Build-side modules imported by default. `((guix build minify-build-system) - (ice-9 popen) ,@%gnu-build-system-modules)) (define (default-uglify-js) |