This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 41134f9 gnu: libnode: Fix regression in unused phases.
41134f9 is described below
commit 41134f915f523601fa183f180b801a872b428fc3
Author: zimoun <[email protected]>
AuthorDate: Thu Jan 14 15:34:29 2021 +0100
gnu: libnode: Fix regression in unused phases.
Fixes regression introduced with commit
1d77141f6d5004cf10d1f9ead53855f25a973847.
Reported by Pierre-Antoine Bouttier
<[email protected]>.
* gnu/packages/node.scm (libnode)[arguments]: Delete phase
"patch-node-shebang".
Signed-off-by: Ricardo Wurmus <[email protected]>
---
gnu/packages/node.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 9e07cd9..a495f6d 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -8,6 +8,7 @@
;;; Copyright © 2018, 2019, 2020 Marius Bakke <[email protected]>
;;; Copyright © 2020 Pierre Langlois <[email protected]>
;;; Copyright © 2020 Ricardo Wurmus <[email protected]>
+;;; Copyright © 2021 Simon Tournier <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -238,4 +239,5 @@ devices.")
`(cons* "--shared" "--without-npm" ,flags))
((#:phases phases '%standard-phases)
`(modify-phases ,phases
- (delete 'patch-npm-shebang)))))))
+ (delete 'patch-npm-shebang)
+ (delete 'patch-node-shebang)))))))