mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: postgresql: Use INVOKE.
* gnu/packages/databases.scm (postgresql)[arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
7e0f04635b
commit
1fbad3ad22
1 changed files with 2 additions and 2 deletions
|
@ -726,10 +726,10 @@ as a drop-in replacement of MySQL.")
|
||||||
#t))
|
#t))
|
||||||
(add-after 'build 'build-contrib
|
(add-after 'build 'build-contrib
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "make" "-C" "contrib"))))
|
(invoke "make" "-C" "contrib")))
|
||||||
(add-after 'install 'install-contrib
|
(add-after 'install 'install-contrib
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "make" "-C" "contrib" "install")))))))
|
(invoke "make" "-C" "contrib" "install"))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("readline" ,readline)
|
`(("readline" ,readline)
|
||||||
("libuuid" ,util-linux)
|
("libuuid" ,util-linux)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue