mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: perl: Split configure phase.
* gnu/packages/perl.scm (perl)[arguments]: Split 'configure' phase into 'setup-configure' and 'configure' phases.
This commit is contained in:
parent
b5b5105c3d
commit
9f2989b6cc
1 changed files with 13 additions and 11 deletions
|
@ -62,11 +62,8 @@ (define-public perl
|
||||||
'(#:tests? #f
|
'(#:tests? #f
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace
|
(add-before 'configure 'setup-configure
|
||||||
'configure
|
(lambda _
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
||||||
(let ((out (assoc-ref outputs "out"))
|
|
||||||
(libc (assoc-ref inputs "libc")))
|
|
||||||
;; Use the right path for `pwd'.
|
;; Use the right path for `pwd'.
|
||||||
(substitute* "dist/PathTools/Cwd.pm"
|
(substitute* "dist/PathTools/Cwd.pm"
|
||||||
(("/bin/pwd")
|
(("/bin/pwd")
|
||||||
|
@ -77,7 +74,12 @@ (define-public perl
|
||||||
(substitute* "cflags.SH"
|
(substitute* "cflags.SH"
|
||||||
(("-std=c89")
|
(("-std=c89")
|
||||||
"-std=gnu89"))
|
"-std=gnu89"))
|
||||||
|
#t))
|
||||||
|
(replace
|
||||||
|
'configure
|
||||||
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
|
(let ((out (assoc-ref outputs "out"))
|
||||||
|
(libc (assoc-ref inputs "libc")))
|
||||||
(zero?
|
(zero?
|
||||||
(system* "./Configure"
|
(system* "./Configure"
|
||||||
(string-append "-Dprefix=" out)
|
(string-append "-Dprefix=" out)
|
||||||
|
|
Loading…
Reference in a new issue