aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guix-env.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix-env.scm b/guix-env.scm
index d905ab716..588f389c5 100644
--- a/guix-env.scm
+++ b/guix-env.scm
@@ -138,7 +138,7 @@
138 #t)) 138 #t))
139 (add-after 'patch-bin-sh 'bootstrap 139 (add-after 'patch-bin-sh 'bootstrap
140 (lambda _ 140 (lambda _
141 (zero? (system* "sh" "bootstrap")))) 141 (invoke "sh" "bootstrap")))
142 ;;(add-before 'build 'chdir 142 ;;(add-before 'build 'chdir
143 ;; (lambda _ 143 ;; (lambda _
144 ;; (chdir "doc/documentation"))) 144 ;; (chdir "doc/documentation")))
@@ -151,6 +151,6 @@
151 (lib (string-append out "/lib"))) 151 (lib (string-append out "/lib")))
152 (setenv "GNUNET_PREFIX" lib) 152 (setenv "GNUNET_PREFIX" lib)
153 (setenv "PATH" (string-append (getenv "PATH") ":" bin)) 153 (setenv "PATH" (string-append (getenv "PATH") ":" bin))
154 (zero? (system* "make" "check"))))))))))) 154 (invoke "make" "check"))))))))))
155 155
156gnunet-dev-env 156gnunet-dev-env