build-system: minify: Do not import (ice-9 popen) in the build environment.
authorRicardo Wurmus <rekado@elephly.net>
Mon, 12 Mar 2018 14:14:01 +0000 (15:14 +0100)
committerRicardo Wurmus <rekado@elephly.net>
Mon, 12 Mar 2018 14:14:01 +0000 (15:14 +0100)
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).

guix/build-system/minify.scm

index af90a32..21d84a1 100644 (file)
@@ -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)