mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: libnode: Fix regression in unused phases.
Fixes regression introduced with commit
1d77141f6d
.
Reported by Pierre-Antoine Bouttier
<pierre-antoine.bouttier@univ-grenoble-alpes.fr>.
* gnu/packages/node.scm (libnode)[arguments]: Delete phase
"patch-node-shebang".
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
683154166d
commit
41134f915f
1 changed files with 3 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
||||||
;;; Copyright © 2018, 2019, 2020 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2018, 2019, 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2020 Pierre Langlois <pierre.langlois@gmx.com>
|
;;; Copyright © 2020 Pierre Langlois <pierre.langlois@gmx.com>
|
||||||
;;; Copyright © 2020 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2020 Ricardo Wurmus <rekado@elephly.net>
|
||||||
|
;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -238,4 +239,5 @@ (define-public libnode
|
||||||
`(cons* "--shared" "--without-npm" ,flags))
|
`(cons* "--shared" "--without-npm" ,flags))
|
||||||
((#:phases phases '%standard-phases)
|
((#:phases phases '%standard-phases)
|
||||||
`(modify-phases ,phases
|
`(modify-phases ,phases
|
||||||
(delete 'patch-npm-shebang)))))))
|
(delete 'patch-npm-shebang)
|
||||||
|
(delete 'patch-node-shebang)))))))
|
||||||
|
|
Loading…
Reference in a new issue