gnu: postgresql: Use INVOKE.

* gnu/packages/databases.scm (postgresql)[arguments]: Substitute INVOKE for SYSTEM*.
master
Tobias Geerinckx-Rice 2018-05-18 16:06:24 +02:00
parent 7e0f04635b
commit 1fbad3ad22
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 2 additions and 2 deletions

View File

@ -726,10 +726,10 @@ as a drop-in replacement of MySQL.")
#t))
(add-after 'build 'build-contrib
(lambda _
(zero? (system* "make" "-C" "contrib"))))
(invoke "make" "-C" "contrib")))
(add-after 'install 'install-contrib
(lambda _
(zero? (system* "make" "-C" "contrib" "install")))))))
(invoke "make" "-C" "contrib" "install"))))))
(inputs
`(("readline" ,readline)
("libuuid" ,util-linux)