aboutsummaryrefslogtreecommitdiff
path: root/guix-env.scm
diff options
context:
space:
mode:
authorNils Gillmann <ng0@n0.is>2018-04-01 10:17:30 +0000
committerNils Gillmann <ng0@n0.is>2018-04-01 10:17:30 +0000
commit1c8221b08904f8c8b9aefd5e2aeec648bcc7e1e4 (patch)
tree7c3603ee2d59dac61e2e5a577ffb9dd14109502c /guix-env.scm
parenta3e88087d09186d847ee8bf042ad665ab6cb0850 (diff)
downloadgnunet-1c8221b08904f8c8b9aefd5e2aeec648bcc7e1e4.tar.gz
gnunet-1c8221b08904f8c8b9aefd5e2aeec648bcc7e1e4.zip
guix-env.scm: Commit my local changes
Signed-off-by: Nils Gillmann <ng0@n0.is>
Diffstat (limited to 'guix-env.scm')
-rw-r--r--guix-env.scm12
1 files changed, 8 insertions, 4 deletions
diff --git a/guix-env.scm b/guix-env.scm
index 5f9929940..b1a5f94c6 100644
--- a/guix-env.scm
+++ b/guix-env.scm
@@ -122,12 +122,13 @@
122 ("libtool" ,libtool))) 122 ("libtool" ,libtool)))
123 (outputs '("out" "debug")) 123 (outputs '("out" "debug"))
124 (arguments 124 (arguments
125 `(#:configure-flags 125 `(;#:configure-flags
126 (list (string-append "--with-nssdir=" %output "/lib") 126 ;;(list (string-append "--with-nssdir=" %output "/lib")
127 ;;"--enable-gcc-hardening" 127 ;;"--enable-gcc-hardening"
128 ;;"--enable-linker-hardening" 128 ;;"--enable-linker-hardening"
129 "--enable-logging=verbose" 129 ;;;;"--enable-documentation-only")
130 "CFLAGS=-ggdb -O0") 130 ;;;"--enable-logging=verbose"
131 ;;;"CFLAGS=-ggdb -O0")
131 #:phases 132 #:phases
132 ;; swap check and install phases and set paths to installed bin 133 ;; swap check and install phases and set paths to installed bin
133 (modify-phases %standard-phases 134 (modify-phases %standard-phases
@@ -141,6 +142,9 @@
141 (add-after 'patch-bin-sh 'bootstrap 142 (add-after 'patch-bin-sh 'bootstrap
142 (lambda _ 143 (lambda _
143 (zero? (system* "sh" "bootstrap")))) 144 (zero? (system* "sh" "bootstrap"))))
145 ;;(add-before 'build 'chdir
146 ;; (lambda _
147 ;; (chdir "doc/documentation")))
144 (delete 'check) 148 (delete 'check)
145 ;; XXX: https://gnunet.org/bugs/view.php?id=4619 149 ;; XXX: https://gnunet.org/bugs/view.php?id=4619
146 (add-after 'install 'set-path-for-check 150 (add-after 'install 'set-path-for-check