diff options
-rw-r--r-- | guix/gexp.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/gexp.scm b/guix/gexp.scm index 7d6a882787..260118affa 100644 --- a/guix/gexp.scm +++ b/guix/gexp.scm @@ -377,7 +377,8 @@ its search path." (gexp (call-with-output-file (ungexp output) (lambda (port) - (write '(ungexp exp) port)))))) + (write '(ungexp exp) port)))) + #:local-build? #t)) |