diff options
author | Christopher Baines <mail@cbaines.net> | 2018-06-12 07:41:45 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-06-12 07:43:59 +0100 |
commit | 9b25e1d1248da83fa3f39f8fe163b842ec4c4d5a (patch) | |
tree | 942e365da92f4c482ef32dffcb3067f4eb260d8a /gnu/packages/erlang.scm | |
parent | 6321ce42ab4d9ab788d858cb19bde4aa7a0e3ecc (diff) | |
download | patches-9b25e1d1248da83fa3f39f8fe163b842ec4c4d5a.tar patches-9b25e1d1248da83fa3f39f8fe163b842ec4c4d5a.tar.gz |
gnu: erlang: Delete the bootstrap phase.
This fails for the erlang package, as the gnu build system attempts to execute
the bootstrap directory.
* gnu/packages/erlang.scm (erlang)[arguments]: Delete the bootstrap phase.
Diffstat (limited to 'gnu/packages/erlang.scm')
-rw-r--r-- | gnu/packages/erlang.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm index 0e2b7b5bcb..55e0e62478 100644 --- a/gnu/packages/erlang.scm +++ b/gnu/packages/erlang.scm @@ -89,6 +89,7 @@ (guix build gnu-build-system)) #:phases (modify-phases %standard-phases + (delete 'bootstrap) ;; The are several code fragments that embed timestamps into the ;; output. Here, we alter those fragments to use the value of ;; SOURCE_DATE_EPOCH instead. |