build-system/gnu: Change the order of `patch-source-shebangs' and `patch'.
* guix/build/gnu-build-system.scm (patch-source-shebangs): Add a newline after the "SHELL =" line in po/Makefile.in.in. (%standard-phases): Move `patch-source-shebangs' after `patch'.master
parent
45298f8fd2
commit
c3ee7448c9
|
@ -98,7 +98,7 @@
|
||||||
(when (file-exists? "po/Makefile.in.in")
|
(when (file-exists? "po/Makefile.in.in")
|
||||||
(substitute* "po/Makefile.in.in"
|
(substitute* "po/Makefile.in.in"
|
||||||
(("^SHELL[[:blank:]]*=.*$")
|
(("^SHELL[[:blank:]]*=.*$")
|
||||||
(string-append "SHELL = " bash))))))
|
(string-append "SHELL = " bash "\n"))))))
|
||||||
|
|
||||||
(define* (patch #:key (patches '()) (patch-flags '("--batch" "-p1"))
|
(define* (patch #:key (patches '()) (patch-flags '("--batch" "-p1"))
|
||||||
#:allow-other-keys)
|
#:allow-other-keys)
|
||||||
|
@ -249,7 +249,7 @@
|
||||||
;; Standard build phases, as a list of symbol/procedure pairs.
|
;; Standard build phases, as a list of symbol/procedure pairs.
|
||||||
(let-syntax ((phases (syntax-rules ()
|
(let-syntax ((phases (syntax-rules ()
|
||||||
((_ p ...) `((p . ,p) ...)))))
|
((_ p ...) `((p . ,p) ...)))))
|
||||||
(phases set-paths unpack patch-source-shebangs patch configure
|
(phases set-paths unpack patch patch-source-shebangs configure
|
||||||
build check install
|
build check install
|
||||||
patch-shebangs strip)))
|
patch-shebangs strip)))
|
||||||
|
|
||||||
|
|
Reference in New Issue